blob: 1c1ddd1dd74c48e0ba84baf2a4bf0fddc1bc245c [file] [log] [blame]
/* { dg-do run } */
#include "check.h"
typedef __SIZE_TYPE__ size_t;
#define ALIGNMENT 256
int main(void)
{
int a[ALIGNMENT/sizeof(int)] __attribute__((aligned(ALIGNMENT)));
check (&a, ALIGNMENT);
int b[ALIGNMENT/sizeof(int)] __attribute__((aligned(ALIGNMENT)));
check (&b, ALIGNMENT);
return 0;
}