Commit ca379c1c by Catherine Moore Committed by Jeff Law

* gcc.c-torture/execute/980526-3.c: New test.

From-SVN: r20109
parent dd2b44ff
Thu May 28 00:17:42 1998 Catherine Moore <clm@cygnus.com>
* gcc.c-torture/execute/980526-3.c: New test.
1998-05-27 Manfred Hollstein <manfred@s-direktnet.de>
* g++.old-deja/g++.jason/thunk2.C: Setup this test to be expected to
......
int compare(x, y)
unsigned int x;
unsigned int y;
{
if (x==y)
return 0;
else
return 1;
}
main()
{
unsigned int i, j, k, l;
i = 5; j = 2; k=0; l=2;
if (compare(5%(~(unsigned) 2), i%~j)
|| compare(0, k%~l))
abort();
else
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