This was not meant to be committed

llvm-svn: 13565
This commit is contained in:
Chris Lattner 2004-05-13 20:56:34 +00:00
parent c12c945cc4
commit 0026512bac
1 changed files with 0 additions and 7 deletions

View File

@ -1475,13 +1475,6 @@ Instruction *InstCombiner::visitSetCondInst(BinaryOperator &I) {
// integers at the end of their ranges...
//
if (ConstantInt *CI = dyn_cast<ConstantInt>(Op1)) {
if (Instruction *LHSI = dyn_cast<Instruction>(Op0))
if (LHSI->getOpcode() == Instruction::Div && LHSI->hasOneUse() &&
isa<ConstantInt>(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) {