From: Glen Nakamura Date: Tue, 3 Jun 2003 23:08:22 +0000 (+0000) Subject: * gcc.dg/20020525-1.c: Replace 0x5a5a5a5a with -1. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61274a14e5416e53211e537a99217d704ce73a60;p=gcc.git * gcc.dg/20020525-1.c: Replace 0x5a5a5a5a with -1. From-SVN: r67407 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 83e9314da14..b381412fa63 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-06-03 Glen Nakamura + + * gcc.dg/20020525-1.c: Replace 0x5a5a5a5a with -1. + 2003-06-03 J"orn Rennecke * g++.dg/abi/empty6.C (B): Request alignment of 8 bytes. diff --git a/gcc/testsuite/gcc.dg/20020525-1.c b/gcc/testsuite/gcc.dg/20020525-1.c index 5f2e8c9de91..7db44f0b2eb 100644 --- a/gcc/testsuite/gcc.dg/20020525-1.c +++ b/gcc/testsuite/gcc.dg/20020525-1.c @@ -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); }