aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/stackalign/pr16660-1.c
blob: b917e824b628127f93434a5da39d0bda20d15057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { 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;
}