Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
aad5fa85d06989ee3270e2012245f481b5de19e3
/
.
/
clang
/
test
/
CodeGenCXX
/
bitfield-layout.cpp
blob: c77c925d87678f57bafefe805a6e9adba70b04f7 [
file
] [
log
] [
blame
]
Anders Carlsson
aad5fa8
2010-04-17 20:21:41 +0000
[
diff
] [
blame^
]
1
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
2
3
// CHECK: = type { i32, [4 x i8] }
4
union
Test1
{
5
int
a
;
6
int
b
:
39
;
7
};
8
9
Test1
t1
;