aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/align-1.c
blob: 75b3cf1c2e61bfc35796dbad82ac7a80a2919dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
void abort (void);

typedef int new_int __attribute__ ((aligned(16)));
struct S { int x; };
 
int main()
{
  if (sizeof(struct S) != sizeof(int))
    abort ();
  return 0;
}