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
Indentation change.
[llvm/avr.git]
/
test
/
Assembler
/
select.ll
blob
b018fbe9c41607dfc1b740f48454c1b3858f7909
1
; RUN: llvm-as %s -o /dev/null -f
2
3
4
define i32 @test(i1 %C, i32 %V1, i32 %V2) {
5
%X = select i1 true, i1 false, i1 true ; <i1> [#uses=1]
6
%V = select i1 %X, i32 %V1, i32 %V2 ; <i32> [#uses=1]
7
ret i32 %V
8
}
9