bitfield-layout.cpp revision de9f153b2348f590151504888c22cb937134cd27
1// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
2
3// CHECK: = type { i32, [4 x i8] }
4union Test1 {
5  int a;
6  int b: 39;
7};
8
9Test1 t1;
10