blob: f68eefcb9094e427b03f42d67c41c08fe643faaf [file] [log] [blame]
/* PR middle-end/37009 */
/* { dg-do compile { target { { ! *-*-darwin* } && ia32 } } } */
/* { dg-options "-mincoming-stack-boundary=2 -mpreferred-stack-boundary=2" } */
extern void bar (double *);
double
foo(double x)
{
double xxx = x + 13.0;
bar (&xxx);
return xxx;
}
/* { dg-final { scan-assembler "andl\[\\t \]*\\$-8,\[\\t \]*%esp" } } */