From 0026512bacb035a84171451116c76290b5a3b048 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 13 May 2004 20:56:34 +0000 Subject: [PATCH] This was not meant to be committed llvm-svn: 13565 --- llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 7ef1b5604778..67b99c56e7e5 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp @@ -1475,13 +1475,6 @@ Instruction *InstCombiner::visitSetCondInst(BinaryOperator &I) { // integers at the end of their ranges... // if (ConstantInt *CI = dyn_cast(Op1)) { - if (Instruction *LHSI = dyn_cast(Op0)) - if (LHSI->getOpcode() == Instruction::Div && LHSI->hasOneUse() && - isa(LHSI->getOperand(1))) { - std::cerr << "COULD FOLD: " << *LHSI; - std::cerr << "COULD FOLD: " << I << "\n"; - } - // Simplify seteq and setne instructions... if (I.getOpcode() == Instruction::SetEQ || I.getOpcode() == Instruction::SetNE) {