diff options
-rw-r--r-- | test/CodeGen/X86/2004-10-08-SelectSetCCFold.llx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2004-10-08-SelectSetCCFold.llx b/test/CodeGen/X86/2004-10-08-SelectSetCCFold.llx new file mode 100644 index 0000000000..cf65a26072 --- /dev/null +++ b/test/CodeGen/X86/2004-10-08-SelectSetCCFold.llx @@ -0,0 +1,8 @@ +; 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 +} + |