forked from OSchip/llvm-project
parent
cf4a996cba
commit
1f99df6d27
|
@ -79,3 +79,20 @@ int %test12b(bool %cond, int %a) {
|
||||||
ret int %c
|
ret int %c
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int %test13(int %a, int %b) {
|
||||||
|
%C = seteq int %a, %b
|
||||||
|
%V = select bool %C, int %a, int %b
|
||||||
|
ret int %V
|
||||||
|
}
|
||||||
|
|
||||||
|
int %test13a(int %a, int %b) {
|
||||||
|
%C = setne int %a, %b
|
||||||
|
%V = select bool %C, int %a, int %b
|
||||||
|
ret int %V
|
||||||
|
}
|
||||||
|
|
||||||
|
int %test13b(int %a, int %b) {
|
||||||
|
%C = seteq int %a, %b
|
||||||
|
%V = select bool %C, int %b, int %a
|
||||||
|
ret int %V
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue