(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
stackalign/
pr16660-1.c
       1  /* { dg-do run } */
       2  /* { dg-skip-if "Stack alignment is too small" { hppa*-*-hpux* } } */
       3  /* { dg-skip-if "Stack alignment causes use of alloca" { nvptx-*-* } } */
       4  
       5  #include "check.h"
       6  
       7  void
       8  f ()
       9  {
      10    unsigned long tmp[4] __attribute__((aligned(64)));
      11    check (&tmp, 64);
      12  }
      13  
      14  int
      15  main()
      16  {
      17    f();
      18    return 0;
      19  }