aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20000120-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20000120-2.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20000120-2.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20000120-2.c b/gcc/testsuite/gcc.c-torture/compile/20000120-2.c
deleted file mode 100644
index 737eb92ac64..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20000120-2.c
+++ /dev/null
@@ -1,18 +0,0 @@
-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;
-}
-