Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
0b8f0a208e9849c7ea50173b98acb51efbe1f2c7
/
.
/
test
/
FrontendC
/
pr2394.c
blob: ca8b046f72f739e5dd6d12ffc10af5aa816608be [
file
] [
log
] [
blame
]
// RUN: %llvmgcc %s -S -o - | FileCheck %s
struct
__attribute
((
packed
))
x
{
int
a
:
24
;};
int
a
(
struct
x
*
g
)
{
// CHECK: load i24
return
g
->
a
;
}