diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/mcmp.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/mcmp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/mcmp.c b/gcc/testsuite/gcc.c-torture/compile/mcmp.c new file mode 100644 index 0000000..6008008 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/mcmp.c @@ -0,0 +1,9 @@ +foo (ip, a, x) + int a; + int *ip; + int x; +{ + if (a >= 1) + x++; + return x; +} |