New test.

From-SVN: r42367
This commit is contained in:
Richard Henderson 2001-05-20 18:36:21 -07:00 committed by Richard Henderson
parent 9f4ccc25e3
commit 4951297b9e
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-05-20 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/20010520-1.c: New.
2001-05-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* g++.old-deja/g++.warn/compare1.C: New test.

View File

@ -0,0 +1,12 @@
static unsigned int expr_hash_table_size = 1;
int
main ()
{
int del = 1;
unsigned int i = 0;
if (i < expr_hash_table_size && del)
exit (0);
abort ();
}