diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/comb.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/unsorted/comb.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/comb.c b/gcc/testsuite/gcc.c-torture/unsorted/comb.c new file mode 100644 index 000000000..a4689079b --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/unsorted/comb.c @@ -0,0 +1,7 @@ +foo (a, b) +{ + int c = a & b; + if ((a & b) == 0) + return 0; + return c; +} |