PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / inline-1.c
blob06059b9553978f46eb2dc57cbdf1ff8fe531087e
1 /* Verify that DECL_INLINE gets copied between DECLs properly. */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fgnu89-inline" } */
4 /* { dg-final { if [ istarget hppa*-*-* ] { scan-assembler-not "xyzzy?,%r" } else { scan-assembler-not "xyzzy" } } } */
6 /* Test that declaration followed by definition inlines. */
7 static inline int xyzzy0 (int);
8 static int xyzzy0 (int x) { return x; }
9 int test0 (void)
11 return xyzzy0 (5);
14 /* Test that definition following declaration inlines. */
15 static int xyzzy1 (int);
16 static inline int xyzzy1 (int x) { return x; }
17 int test1 (void)
19 return xyzzy1 (5);
22 /* Test that redeclaration inside a function body inlines. */
23 extern inline int xyzzy2 (int x) { return x; }
24 int test2 (void)
26 extern int xyzzy2 (int);
27 return xyzzy2 (5);