OSDN Git Service

2010-05-09 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / inline-4.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler-not "big_static_inline" } } */
4
5 extern void f(void);
6 static inline void big_static_inline(void)
7 {
8   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
9   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
10   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
11   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
12   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
13   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
14   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
15   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
16   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
17   f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
18 }