arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / stackalign / pr16660-3.c
blob1c1ddd1dd74c48e0ba84baf2a4bf0fddc1bc245c
1 /* { dg-do run } */
3 #include "check.h"
5 typedef __SIZE_TYPE__ size_t;
6 #define ALIGNMENT 256
7 int main(void)
9 int a[ALIGNMENT/sizeof(int)] __attribute__((aligned(ALIGNMENT)));
10 check (&a, ALIGNMENT);
11 int b[ALIGNMENT/sizeof(int)] __attribute__((aligned(ALIGNMENT)));
12 check (&b, ALIGNMENT);
13 return 0;