xref: /llvm-project/clang/test/CodeGen/PR4611-bitfield-layout.c (revision fb00c88703fe98f6f8c95114f62e6ec732862194)
1 // RUN: %clang_cc1 -triple i386-unknown-unknown %s -emit-llvm -o - | FileCheck %s
2 //
3 // CHECK: struct.object_entry = type { i32 }
4 
5 struct object_entry {
6        unsigned int type:3, pack_id:16, depth:13;
7 } entries;
8