Commit 88903d85 by Nick Clifton Committed by Nick Clifton

new test case

From-SVN: r34136
parent d08230fe
2000-05-24 Nick Clifton <nickc@cygnus.com>
* gcc.c-torture/execute/20000523-1.c: New test.
2000-05-23 Zack Weinberg <zack@wolery.cumb.org>
* c-torture/execute/bcp-1.c: Replace abort in arg of
......
int
main (void)
{
long long x;
int n;
n = 9;
x = (((long long) n) << 55) / 0xff;
if (x == 0)
abort ();
x = (((long long) 9) << 55) / 0xff;
if (x == 0)
abort ();
exit (0);
}
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