repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC
/
pr2394.c
blob
ca8b046f72f739e5dd6d12ffc10af5aa816608be
1
// RUN: %llvmgcc %s -S -o - | FileCheck %s
2
struct
__attribute
((
packed
))
x
{
int
a
:
24
;};
3
int
a
(
struct
x
*
g
) {
4
// CHECK: load i24
5
return
g
->
a
;
6
}