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
[clang] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2008-02-07-bitfield-bug.c
blob
73e31e75e97952366364acc547d7d8090c78d5bf
1
// RUN: %clang_cc1 %s -emit-llvm -o %t
2
// PR1990
3
4
struct
test
{
5
char
a
[
3
];
6
unsigned char
b
:
1
;
7
};
8
9
void
f
(
struct
test
*
t
) {
10
t
->
b
=
1
;
11
}