Sign in
ara-mdk
/
platform
/
external
/
clang
/
f72663fc962c1c27a4793ebd3d2e3d81a4f4e984
/
.
/
test
/
CodeGen
/
pr2394.c
blob: f1091ec2fba3e23f1a0c3587a254274216cdfa71 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
struct
__attribute
((
packed
))
x
{
int
a
:
24
;};
int
a
(
struct
x
*
g
)
{
// CHECK: load i24
return
g
->
a
;
}