repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[OpenACC] Enable 'attach' clause for combined constructs
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2003-11-20-Bitfields.c
blob
5284cde4a9461ea0da4cf40cb595515ff256d4df
1
// RUN: %clang_cc1 -emit-llvm %s -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