aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/comb.c
blob: f39e769e23034abda470c0544b17afee8078ba24 (plain)
1
2
3
4
5
6
7
8
9
/* { dg-additional-options "-std=gnu89" } */

foo (a, b)
{
  int c = a & b;
  if ((a & b) == 0)
    return 0;
  return c;
}