gcc.c-torture/execute/nestfunc-3.c
Richard Henderson
rth@redhat.com
Sun Nov 19 01:42:00 GMT 2000
Was not 64-bit clean.
r~
* gcc.c-torture/execute/nestfunc-3.c (main): Mask result to 32 bits.
Index: gcc.c-torture/execute/nestfunc-3.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/testsuite/gcc.c-torture/execute/nestfunc-3.c,v
retrieving revision 1.1
diff -c -p -d -r1.1 nestfunc-3.c
*** nestfunc-3.c 2000/11/16 19:45:23 1.1
--- nestfunc-3.c 2000/11/19 09:40:48
*************** main (void)
*** 40,46 ****
}
}
! if (sum != 0xbecfcbf5)
abort ();
#endif
--- 40,46 ----
}
}
! if ((sum & 0xffffffff) != 0xbecfcbf5)
abort ();
#endif
More information about the Gcc-patches
mailing list