OSDN Git Service

* gcc.dg/20020525-1.c: Replace 0x5a5a5a5a with -1.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 3 Jun 2003 23:08:22 +0000 (23:08 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 3 Jun 2003 23:08:22 +0000 (23:08 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67407 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/20020525-1.c

index 83e9314..b381412 100644 (file)
@@ -1,3 +1,7 @@
+2003-06-03  Glen Nakamura  <glen@imodulo.com>
+
+       * gcc.dg/20020525-1.c: Replace 0x5a5a5a5a with -1.
+
 2003-06-03  J"orn Rennecke <joern.rennecke@superh.com>
 
        * g++.dg/abi/empty6.C (B): Request alignment of 8 bytes.
index 5f2e8c9..7db44f0 100644 (file)
@@ -13,12 +13,12 @@ void foo (int *x, int y)
   
 int main ()
 {
-  int x[2] = { 0x5a5a5a5a, 0x5a5a5a5a };
+  int x[2] = { -1, -1 };
     
-  if (x[1] != 0x5a5a5a5a)
+  if (x[1] != -1)
     abort ();
   foo (x, sizeof (int) + 1);
-  if (x[1] == 0x5a5a5a5a)
+  if (x[1] == -1)
     abort ();
   exit (0);
 }