* gcc.c-torture/compile/20000517-1.c: New test.

From-SVN: r33972
This commit is contained in:
Jeffrey A Law 2000-05-18 00:30:08 +00:00 committed by Jeff Law
parent b4c7e5673b
commit 233f4c9826
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed May 17 18:30:10 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/20000517-1.c: New test.
2000-05-16 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* gcc.c-torture/execute/20000516-1.c: New test.

View file

@ -0,0 +1,9 @@
void test2 (int*, int, int, int);
void test ()
{
int l;
test2 (0, 0, 0, 0);
test2 (&l, 0, 0, 0);
}