Testcase for PR2987.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58459 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-10-30 21:13:11 +00:00
parent 1975d03183
commit 557291c544

View File

@ -0,0 +1,9 @@
// RUN: %llvmgcc -c %s
// PR2987
struct S2045
{
unsigned short int a;
union { } b;
union __attribute__ ((aligned (4))) { } c[0];
};
struct S2045 s2045;