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
Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
PR2643-null-store-to-bitfield.c
blob
5d06e5da519e381fda4fcff0dead74adf590f3d5
1
// RUN: %clang_cc1 -emit-llvm -o - %s
2
// PR2643
3
4
void
foo
(
void
) {
5
struct
{
6
int
a
:
1
;
7
int
b
:
1
;
8
}
entry
= {
0
};
9
}
10