Fix a rather nasty regression from r150690: LHS != RHS does not imply LHS->stripPoint...
[oota-llvm.git] / lib / Analysis / InstructionSimplify.cpp
index 9d5b74c8cf2c3277c9dfb47369428d38227fcce7..88a2c53e806e7d8f202765dbf14e67a428db793c 100644 (file)
@@ -1593,10 +1593,11 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
   // the compare, and if only one of them is then we moved it to RHS already.
   Value *LHSPtr = LHS->stripPointerCasts();
   Value *RHSPtr = RHS->stripPointerCasts();
+  if (LHSPtr == RHSPtr)
+    return ConstantInt::get(ITy, CmpInst::isTrueWhenEqual(Pred));
   if (isa<AllocaInst>(LHSPtr) && (isa<GlobalValue>(RHSPtr) ||
                                   isa<AllocaInst>(RHSPtr)  ||
                                   isa<ConstantPointerNull>(RHSPtr)))
-    // We already know that LHS != RHS.
     return ConstantInt::get(ITy, CmpInst::isFalseWhenEqual(Pred));
 
   // If we are comparing with zero then try hard since this is a common case.