aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/stackalign/longlong-1.c
blob: 161d2292d47cf4cdd61b3bbbec0fda9ac1c4d642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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);
}