libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / stackalign / pr16660-1.c
blob459b3df26964a63412f0823cbbc0cf2216cb978c
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-*-* } } */
5 #include "check.h"
7 void
8 f ()
10 unsigned long tmp[4] __attribute__((aligned(64)));
11 check (&tmp, 64);
14 int
15 main()
17 f();
18 return 0;