diff options
author | dim <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-11-24 09:15:30 +0000 |
commit | 173a4f43a911175643bda81ee675e8d9269056ea (patch) | |
tree | 47df2c12b57214af6c31e47404b005675b8b7ffc /test/CodeGen/union.c | |
parent | 88f7a7d5251a2d813460274c92decc143a11569b (diff) | |
download | FreeBSD-src-173a4f43a911175643bda81ee675e8d9269056ea.zip FreeBSD-src-173a4f43a911175643bda81ee675e8d9269056ea.tar.gz |
Vendor import of clang RELEASE_350/final tag r216957 (effectively, 3.5.0 release):
https://llvm.org/svn/llvm-project/cfe/tags/RELEASE_350/final@216957
Diffstat (limited to 'test/CodeGen/union.c')
-rw-r--r-- | test/CodeGen/union.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/union.c b/test/CodeGen/union.c index 5c89e2d..7302182 100644 --- a/test/CodeGen/union.c +++ b/test/CodeGen/union.c @@ -44,3 +44,16 @@ typedef union T0 { unsigned int : 0; } T0; T0 t0; union { int large_bitfield: 31; char c } u2; + +struct dt_t_s { + union { + long long u : 56; + } __attribute__((packed)); +}; +struct { + struct { + struct { + struct dt_t_s t; + }; + }; +} a; |