gcc/gcc/testsuite/gcc.dg/torture/stackalign/pr16660-1.c

19 lines
240 B
C

/* { dg-do run } */
/* { dg-skip-if "Stack alignment is too small" { hppa*-*-hpux* } "*" "" } */
#include "check.h"
void
f ()
{
unsigned long tmp[4] __attribute__((aligned(64)));
check (&tmp, 64);
}
int
main()
{
f();
return 0;
}