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

From-SVN: r24550
This commit is contained in:
Jeffrey A Law 1999-01-06 23:43:19 +00:00 committed by Jeff Law
parent 4c57111494
commit 1d1c12f423
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,7 @@
Wed Jan 6 02:21:59 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/990106-2.c: New test.
* gcc.c-torture/execute/990106-1.c: New test.
Wed Dec 30 23:05:28 1998 Zack Weinberg <zack@rabi.columbia.edu>

View File

@ -0,0 +1,5 @@
foo(char *bufp)
{
int x = 80;
return (*bufp++ = x ? 'a' : 'b');
}