From: Chris Lattner Date: Sun, 17 Oct 2004 17:40:50 +0000 (+0000) Subject: Don't print stuff out from the code generator. This broke the JIT horribly X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=611fb259ba6e0b8964aa0f318bafee370f2ec4d8;p=oota-llvm.git Don't print stuff out from the code generator. This broke the JIT horribly last night. :) bork! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17093 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelSimple.cpp b/lib/Target/X86/X86ISelSimple.cpp index 3278ec23568..fbdc7c51e92 100644 --- a/lib/Target/X86/X86ISelSimple.cpp +++ b/lib/Target/X86/X86ISelSimple.cpp @@ -962,7 +962,6 @@ unsigned X86ISel::EmitComparison(unsigned OpNum, Value *Op0, Value *Op1, cast(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;