* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr39394.c
blob325a08ff4704bcd43dcf996a4de5a2b9fdee801e
1 /* PR tree-optimization/39394 */
3 char *p;
4 int x;
6 static inline void
7 f1 (int n)
9 asm volatile ("" : "=m" (*(struct { char x[n]; } *) p));
12 static inline void
13 f2 (void)
15 x ? f1 (1) : f1 (2);
18 static inline void
19 f3 (void)
21 f2 ();
24 void
25 f4 (void)
27 f3 ();