* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20050328-1.c
bloba68574f1fbd3c300e6a51fc0e89c2eb7d733ff27
1 void fn1 (void *);
2 void fn2 (void *);
3 void foo (void);
4 void bar (void);
6 extern inline void *
7 baz (void)
9 return 0;
12 void
13 foo (void)
15 fn1 (baz ());
16 fn2 (baz ());
19 void
20 bar (void)
22 fn1 (baz ());
23 fn2 (baz);