* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Record_Type>: Don't
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr64260.c
blobe6cd6c209ade583060b7326ea8b75116a8e3f0a9
1 /* PR rtl-optimization/64260 */
3 int a = 1, b;
5 void
6 foo (char p)
8 int t = 0;
9 for (; b < 1; b++)
11 int *s = &a;
12 if (--t)
13 *s &= p;
14 *s &= 1;
18 int
19 main ()
21 foo (0);
22 if (a != 0)
23 __builtin_abort ();
24 return 0;