PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / align-1.c
blob2dc1aad2abc0ee6ed814c703e973a5ba25205861
1 typedef int new_int __attribute__ ((aligned(16)));
2 struct S { int x; };
4 int main()
6 if (sizeof(struct S) != sizeof(int))
7 abort ();
8 return 0;