aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/pad-10.c
blob: ac015f222c1d05c1889663c4f3ad8bb81f726231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-march=*" } { "-march=atom" } } */
/* { dg-options "-O2 -fomit-frame-pointer -march=atom" } */
/* { dg-final { scan-assembler-not "nop" { target { nonpic || { ! ia32 } } } } } */
/* { 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;
}