Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
de9f153b2348f590151504888c22cb937134cd27
/
.
/
test
/
CodeGenCXX
/
bitfield-layout.cpp
blob: c77c925d87678f57bafefe805a6e9adba70b04f7 [
file
] [
log
] [
blame
]
Anders Carlsson
de9f153
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
;