1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-01 15:33:33 +00:00
llvm-6502/test/CodeGen/X86/2004-10-08-SelectSetCCFold.llx
2006-12-02 04:23:10 +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
}