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
/
2003-11-20-UnionBitfield.c
blob
19b360456fcce48d6c63d9f844ddff5d71b02581
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
struct
printf_spec
{
4
unsigned int
minus_flag
:
1
;
5
char
converter
;
6
};
7
8
void
parse_doprnt_spec
(
void
) {
9
struct
printf_spec spec
;
10
spec
.
minus_flag
=
1
;
11
}
12