blob: 52ab572929170b29c79ab48cd9dbc74a8cff9caf [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized -fdisable-tree-einline=foo2 -fdisable-ipa-inline -Wno-attributes" } */
/* { dg-add-options bind_pic_locally } */
int g;
__attribute__((always_inline)) void bar (void)
{
g++;
}
int foo (void)
{
bar ();
return g;
}
int foo2 (void)
{
bar();
return g + 1;
}
/* { dg-final { scan-tree-dump-times "bar" 4 "optimized" } } */