aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/pr41900.c
blob: a23214c76f8638d7e6114028c6dacbd14e2e016c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-require-effective-target ia32 } */
/* { 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" } } */