Don't print stuff out from the code generator. This broke the JIT horribly
authorChris Lattner <sabre@nondot.org>
Sun, 17 Oct 2004 17:40:50 +0000 (17:40 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 17 Oct 2004 17:40:50 +0000 (17:40 +0000)
last night. :)  bork!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17093 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelSimple.cpp

index 3278ec23568692ae0b57b5546fec92337410951c..fbdc7c51e9235bebf4a29b4988337c69dbdcd829 100644 (file)
@@ -962,7 +962,6 @@ unsigned X86ISel::EmitComparison(unsigned OpNum, Value *Op0, Value *Op1,
               cast<ConstantInt>(Op0I->getOperand(1))->getRawValue();
             BuildMI(*MBB, IP, TESTTab[Class], 2).addReg(LHS).addImm(Imm);
             
-            std::cerr << "FOLDED SETCC and AND!\n";
             if (OpNum == 2) return 6;   // Map jl -> js
             if (OpNum == 3) return 7;   // Map jg -> jns
             return OpNum;