You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: llvm-as %s -o /dev/null
|
|
; RUN: verify-uselistorder %s
|
|
|
|
|
|
define i32 @test(i1 %C, i32 %V1, i32 %V2) {
|
|
%X = select i1 true, i1 false, i1 true ; <i1> [#uses=1]
|
|
%V = select i1 %X, i32 %V1, i32 %V2 ; <i32> [#uses=1]
|
|
ret i32 %V
|
|
}
|
|
|