* gcc.c-torture/execute/nestfunc-3.c (main): Mask result to 32 bits.

From-SVN: r37562
This commit is contained in:
Richard Henderson 2000-11-19 01:41:33 -08:00 committed by Richard Henderson
parent dd4458df4e
commit 980c0b564e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-11-18 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/nestfunc-3.c (main): Mask result to 32 bits.
2000-11-18 Richard Henderson <rth@redhat.com>
* lib/c-torture.exp (TORTURE_OPTIONS): Remove -fssa.

View File

@ -40,7 +40,7 @@ main (void)
}
}
if (sum != 0xbecfcbf5)
if ((sum & 0xffffffff) != 0xbecfcbf5)
abort ();
#endif