blob: 2dc947c9267f8ca740bcf709d4c7dd0704c7b563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { dg-do compile { target { ! ia32 } } } */
/* { dg-options "-fomit-frame-pointer" } */
void foo()
{
int a=0, b=0, c=0, e=0, f=0, g=0, h=0, i=0;
__asm__ __volatile__ (""
:
:
: "bp"
);
}
|