xref: /aosp_15_r20/external/clang/test/CodeGen/PR4611-bitfield-layout.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
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