aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/inline-4.c
blob: 2442f2d392d04642af233b8ca20c77c1e64a4fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "big_static_inline" } } */

extern void f(void);
static inline void big_static_inline(void)
{
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
  f(); f(); f(); f(); f(); f(); f(); f(); f(); f();
}