blob: e4956f0c1d1940b803b5a2c994fb4fefdefbc1a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* { dg-do compile { target { ! { ia32 } } } } */
/* { dg-skip-if "" { i?86-*-* x86_64-*-* } { "-march=*" } { "-march=atom" } } */
/* { dg-options "-O2 -fomit-frame-pointer -march=atom" } */
/* { dg-final { scan-assembler-times "nop" 6 } } */
/* { dg-final { scan-assembler-not "rep" } } */
int
foo (int x, int y)
{
return x + y;
}
|