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

From-SVN: r33999
This commit is contained in:
Jeffrey A Law 2000-05-18 22:03:16 +00:00 committed by Jeff Law
parent 3fe3a08f9a
commit 606b4c9404
2 changed files with 21 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu May 18 16:03:29 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/20000518-1.c: New test.
2000-05-18 David Billinghurst <David.Billinghurst@riotinto.com.au>
* g77.f-torture/compile/200005018.f: New test.

View File

@ -0,0 +1,17 @@
void callit1(void*);
extern __inline__ void test()
{
__label__ l1;
callit1(&&l1);
l1:
}
void dotest()
{
test();
}