1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/CodeGen/X86/2004-10-08-SelectSetCCFold.llx
2007-01-17 07:59:14 +00:00

9 lines
178 B
Plaintext

; RUN: llvm-upgrade < %s | llvm-as | 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
}