(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
stackalign/
longlong-1.c
       1  /* PR target/39137 */
       2  /* { dg-do compile } */
       3  /* { dg-require-effective-target ia32 } */
       4  /* { dg-options "-O2 -mpreferred-stack-boundary=2" } */
       5  /* Make sure dynamic stack realignment isn't performed just because there
       6     are long long variables.  */
       7  /* { dg-final { scan-assembler-not "and\[lq\]?\[^\\n\]*-8,\[^\\n\]*sp" } } */
       8  
       9  void fn (void *);
      10  
      11  void f1 (void)
      12  {
      13    unsigned long long a;
      14    fn (&a);
      15  }