blob: edf6039f9b21795319d98b34b5ce2a092d34581b [file] [log] [blame]
static int __attribute__((noinline)) ATTRIBUTE
bar (int x)
{
return x + 3;
}
int __attribute__((noinline)) ATTRIBUTE
foo (int y)
{
return y + bar (y);
}
int ATTRIBUTE
main (void)
{
return !(foo (5) == 13);
}