Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / ext / attrib21.C
blob2fc5800b05e187d05fc0dac556677a701b1536e4
1 // PR c++/20763
3 typedef void *voidp;
5 struct S
7   char a;
8   voidp __attribute__ ((aligned (16))) b;
9 };
11 struct T
13   char a;
14   void *__attribute__ ((aligned (16))) b;
17 int f[sizeof (struct S) != sizeof (struct T) ? -1 : 1];