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

From-SVN: r34030
This commit is contained in:
David Edelsohn 2000-05-19 18:34:52 +00:00 committed by David Edelsohn
parent 0d9a7d79ac
commit ea25bef41f
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-05-19 David Edelsohn <edelsohn@gnu.org>
* gcc.c-torture/execute/20000519-2.c: New test.
2000-05-19 Andreas Jaeger <aj@suse.de>
* gcc.c-torture/execute/20000519-1.c: Testcase from Ulrich Drepper

View File

@ -0,0 +1,12 @@
long x = -1L;
int main()
{
long b = (x != -1L);
if (b)
abort();
exit(0);
}