repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
When removing a function from the function set and adding it to deferred, we
[llvm.git]
/
test
/
FrontendC
/
2003-08-17-DeadCodeShortCircuit.c
blob
9ae633ee0812894f030bf804483615a71aea8f82
1
// RUN: %llvmgcc -xc %s -S -o %t.o
2
3
int
test
(
_Bool pos
,
_Bool color
) {
4
return
0
;
5
return
(
pos
&&
color
);
6
}
7