Commit 980c0b56 by Richard Henderson Committed by Richard Henderson

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

From-SVN: r37562
parent dd4458df
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.
* lib/f-torture.exp (TORTURE_OPTIONS): Likewise.
* lib/gcc-dg.exp (TORTURE_OPTIONS): Likewise.
......
......@@ -40,7 +40,7 @@ main (void)
}
}
if (sum != 0xbecfcbf5)
if ((sum & 0xffffffff) != 0xbecfcbf5)
abort ();
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment