aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/a3.c
blob: 85d2a242630f408740d9bd1a6867510d949dc872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
foo (a)
{
  int i;

  for (i = 1;  i < a; i++)
    ;
  {
    int b = (int) &foo;

    return (a & b) == 0;
  }
}