1typedef int new_int __attribute__ ((aligned(16)));
2struct S { int x; };
3
4int main()
5{
6  if (sizeof(struct S) != sizeof(int))
7    abort ();
8  return 0;
9}
10