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
Fix PR4948 (and a leak): by not destroying the DwarfException
[llvm/avr.git]
/
test
/
Assembler
/
select.ll
blob
2d3f412d256d9324d29c606c35dbc0ffe3e0c0b2
1
; RUN: llvm-as %s -o /dev/null
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