PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / vrp-7.c
blobb4c9e62d449e006dad37c909640f4f80cbbdc720
2 void abort (void);
4 struct T
6 int b : 1;
7 } t;
9 void __attribute__((noinline)) foo (int f)
11 t.b = (f & 0x10) ? 1 : 0;
14 int main (void)
16 foo (0x10);
17 if (!t.b)
18 abort ();
19 return 0;