* 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
2 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue