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
X86MCInstLower::Lower should only not emit anything to OutStreamer,
[llvm/avr.git]
/
test
/
FrontendC++
/
2003-10-17-BoolBitfields.cpp
blob
103945df8aebfaf1367eadb7125dddc51e0ac17a
1
// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3
struct
test
{
4
bool
A
:
1
;
5
bool
B
:
1
;
6
};
7
8
void
foo
(
test
*
T
) {
9
T
->
B
=
true
;
10
}
11