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
7void
8f ()
9{
10  unsigned long tmp[4] __attribute__((aligned(64)));
11  check (&tmp, 64);
12}
13
14int
15main()
16{
17  f();
18  return 0;
19}
20