diff --git a/llvm/test/Regression/CodeGen/X86/2006-01-30-LongSetcc.ll b/llvm/test/Regression/CodeGen/X86/2006-01-30-LongSetcc.ll new file mode 100644 index 000000000000..52d25c27a652 --- /dev/null +++ b/llvm/test/Regression/CodeGen/X86/2006-01-30-LongSetcc.ll @@ -0,0 +1,6 @@ +; RUN: llvm-as < %s | llc -march=x86 + +bool %test(long %X) { + %B = setlt long %X, 0 ; [#uses=1] + ret bool %B +}