* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr30311.c
blob85ce75099cfa8dfc5403e32d6a5ffa19ce0ac2d1
1 /* ICE in subreg_get_info: bug 30311. */
2 /* { dg-do compile { target i?86-*-* x86_64-*-* } } */
3 inline double bar(double x)
5 long double d;
6 __asm__ ("" : "=t" (d) : "0" (x));
7 return d;
10 double foo(double x)
12 if (x)
13 return bar(x);
14 else
15 return bar(x);