PR4611-bitfield-layout.c revision 72d2dab6058467036df73a5f668036a519043e5b
1// RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
2//
3// CHECK: struct.object_entry = type { [4 x i8] }
4
5struct object_entry {
6       unsigned int type:3, pack_id:16, depth:13;
7} entries;
8