Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / inline-1.c
blob30bf91ece885c61943f31fd81f8e05b3244872e6
1 /* { dg-do compile } */
2 /* { dg-options "--param ggc-min-heapsize=0 --param ggc-min-expand=0" } */
3 /* This used to ICE because we forgot to update the statement after folding
4 and the eh info. */
5 /* PR tree-opt/30385 */
7 int f (void);
8 static inline void g(int t)
10 int a;
11 while (a < f())
14 void h(int t)
16 g(t);