OSDN Git Service

2007-02-28 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / inline-1.c
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 */
6
7 static inline void g(int t)
8 {
9  int a;
10  while (a < f())
11   ;
12 }
13 void h(int t)
14 {
15  g(t);
16 }