Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / inline-11.c
blob6f0ff681fe4820f68600b9a55c12fa249e0f62ea
1 /* { dg-do compile } */
2 /* { dg-require-weak "" } */
3 /* { dg-options "-O2 -fdump-tree-einline" } */
4 int w;
5 int bar (void) __attribute__ ((weak));
6 int bar (){
7 w++;
9 void foo()
11 bar();
13 /* { dg-final { scan-tree-dump-times "function body can be overwritten at link time" 1 "einline" } } */