PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / incoming-5.c
blobf68eefcb9094e427b03f42d67c41c08fe643faaf
1 /* PR middle-end/37009 */
2 /* { dg-do compile { target { { ! *-*-darwin* } && ia32 } } } */
3 /* { dg-options "-mincoming-stack-boundary=2 -mpreferred-stack-boundary=2" } */
5 extern void bar (double *);
7 double
8 foo(double x)
10 double xxx = x + 13.0;
12 bar (&xxx);
13 return xxx;
16 /* { dg-final { scan-assembler "andl\[\\t \]*\\$-8,\[\\t \]*%esp" } } */