* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr41661.c
blob658e4288b8dc5f3a2ede6da638513d6c99dffeb0
1 /* PR tree-optimization/41661 */
2 /* { dg-do compile } */
3 /* { dg-options "-fno-early-inlining" } */
5 int g;
7 void foo (int x)
9 g = x;
12 void bar (double d)
14 foo (d == 1);
17 void baz (int a)
19 bar (1);