repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
slightly increase prettiness.
[llvm/avr.git]
/
test
/
FrontendC
/
2003-11-20-Bitfields.c
blob
4be9942ccf3cd7bf47caa9b87907979697cb615c
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
struct
face_cachel
{
4
unsigned int
reverse
:
1
;
5
unsigned char
font_specified
[
1
];
6
};
7
8
void
9
ensure_face_cachel_contains_charset
(
struct
face_cachel
*
cachel
) {
10
cachel
->
font_specified
[
0
] =
0
;
11
}
12