blob: 55f712d1fa4ec481fcca6da68533761d8830c186 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-options "-O2 -fomit-frame-pointer -mpreferred-stack-boundary=2" } */
int main ()
{
volatile unsigned code = 0xc3;
((void (*)(void)) &code) ();
return 0;
}
/* { dg-final { scan-assembler-not "call\[ \\t\]+\\*%esp" } } */
|