comparison gcc/testsuite/gcc.dg/inline-4.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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 }