Files
llvm-project/clang/test/CodeGenCXX/bitfield-layout.cpp
2010-04-17 20:21:41 +00:00

10 lines
169 B
C++

// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
// CHECK: = type { i32, [4 x i8] }
union Test1 {
int a;
int b: 39;
};
Test1 t1;