* gcc.dg/20020525-1.c: Replace 0x5a5a5a5a with -1.
authorGlen Nakamura <glen@imodulo.com>
Tue, 3 Jun 2003 23:08:22 +0000 (23:08 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 3 Jun 2003 23:08:22 +0000 (23:08 +0000)
From-SVN: r67407

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

index 83e9314da14a69bea2c0e7d9b1c67428b593afdc..b381412fa635a564ef22d70dfe96596b4e1e1015 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 5f2e8c9de91a11f85c466b2241faf51914b156ff..7db44f0b2ebf685131baa01ea04b10e45301c206 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);
 }