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