mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
0a1bfd5be0
it cannot be folded in. llvm-svn: 16839
9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
; RUN: llvm-as < %s | llc -march=x86
|
|
|
|
bool %test(bool %C, bool %D, int %X, int %Y) {
|
|
%E = setlt int %X, %Y
|
|
%F = select bool %C, bool %D, bool %E
|
|
ret bool %F
|
|
}
|
|
|