mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-11 19:45:28 +08:00
* gcc.c-torture/execute/nestfunc-3.c (main): Mask result to 32 bits.
From-SVN: r37562
This commit is contained in:
parent
dd4458df4e
commit
980c0b564e
@ -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.
|
||||
|
@ -40,7 +40,7 @@ main (void)
|
||||
}
|
||||
}
|
||||
|
||||
if (sum != 0xbecfcbf5)
|
||||
if ((sum & 0xffffffff) != 0xbecfcbf5)
|
||||
abort ();
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user