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

From-SVN: r31545
This commit is contained in:
Jeffrey A Law 2000-01-20 19:45:39 +00:00 committed by Jeff Law
parent 33f6849b91
commit 7e7cf28ad2
2 changed files with 19 additions and 0 deletions

View File

@ -1,5 +1,6 @@
Thu Jan 20 12:34:48 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/20000120-2.c: New test.
* gcc.c-torture/execute/20000120-1.c: New test.
Thu Jan 13 02:29:32 2000 Jeffrey A Law (law@cygnus.com)

View File

@ -0,0 +1,18 @@
extern __inline__ int
odd(int i)
{
return i & 0x1;
}
int
foo(int i, int j)
{
return odd(i + j);
}
int
odd(int i)
{
return i & 0x1;
}