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
make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git]
/
test
/
FrontendC
/
2003-11-20-UnionBitfield.c
blob
f999c2077721875b485454aada059f588477bc69
1
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3
struct
printf_spec
{
4
unsigned int
minus_flag
:
1
;
5
char
converter
;
6
};
7
8
void
parse_doprnt_spec
() {
9
struct
printf_spec spec
;
10
spec
.
minus_flag
=
1
;
11
}
12