blob: cd65041fd5d6e6b65aa4687d5bd3f2418f1d0953 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-skip-if "" { i?86-*-* x86_64-*-* } { "-march=*" } { "-march=atom" } } */
/* { dg-options "-O2 -fomit-frame-pointer -march=atom" } */
/* { dg-final { scan-assembler-not "nop" } } */
/* { dg-final { scan-assembler-not "rep" } } */
extern void bar ();
int
foo2 (int z, int x)
{
if (x == 1)
{
bar ();
return z;
}
else
return x - z;
}