* gcc.dg/990213-1.c: New test.

From-SVN: r25173
This commit is contained in:
Jeffrey A Law 1999-02-12 23:47:51 +00:00 committed by Jeff Law
parent dd074554d1
commit 68fe00c07c
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sat Feb 13 00:43:52 1999 Jeffrey A Law (law@cygnus.com)
* gcc.dg/990213-1.c: New test.
Fri Feb 12 11:04:35 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/990106-2.c: Update to work on targets with 16bit

View File

@ -0,0 +1,12 @@
/* { dg-do compile } */
/* { dg-options "-W -Wall -Werror" } */
static inline int unused_fn(int dummyarg)
{
return dummyarg*dummyarg;
}
int main()
{
return 0;
}