diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
commit | 01af97d3b23bded2b2b21af19bbc6e4cce49e5b3 (patch) | |
tree | 64a10f4c4154739d4a8191d7e1b52ce497f4ebd6 /test/CodeGen/union.c | |
parent | c3b054d250cdca485c71845089c316e10610ebad (diff) |
Diffstat (limited to 'test/CodeGen/union.c')
-rw-r--r-- | test/CodeGen/union.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeGen/union.c b/test/CodeGen/union.c index 1883ca639b7e4..5c89e2d72a7e5 100644 --- a/test/CodeGen/union.c +++ b/test/CodeGen/union.c @@ -42,3 +42,5 @@ int RRF(void) {return RRU.a;} // PR6164 typedef union T0 { unsigned int : 0; } T0; T0 t0; + +union { int large_bitfield: 31; char c } u2; |