Commit e2ba7b0e by Jeffrey A Law Committed by Jeff Law

* gcc.c-torture/execute/990106-1.c: New test.

From-SVN: r24504
parent 52f7bca7
Wed Jan 6 02:21:59 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/990106-1.c: New test.
Wed Dec 30 23:05:28 1998 Zack Weinberg <zack@rabi.columbia.edu>
* gcc.c-torture/compile/981223-1.c: New test.
......
foo(bufp)
char *bufp;
{
int x = 80;
return (*bufp++ = x ? 'a' : 'b');
}
main()
{
char x;
if (foo (&x) != 'a')
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