blob: 161d2292d47cf4cdd61b3bbbec0fda9ac1c4d642 [file] [log] [blame]
/* PR target/39137 */
/* { dg-do compile } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-O2 -mpreferred-stack-boundary=2" } */
/* Make sure dynamic stack realignment isn't performed just because there
are long long variables. */
/* { dg-final { scan-assembler-not "and\[lq\]?\[^\\n\]*-8,\[^\\n\]*sp" } } */
void fn (void *);
void f1 (void)
{
unsigned long long a;
fn (&a);
}