Fix five-letter typo in comment.
authorNick Lewycky <nicholas@mxc.ca>
Sat, 25 Feb 2012 19:12:58 +0000 (19:12 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sat, 25 Feb 2012 19:12:58 +0000 (19:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151450 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InstructionSimplify.cpp

index a6a080e38124af8b21231bc3c4946b094f7b19c7..11afa85159780b0a5053685593509e6546c14bb3 100644 (file)
@@ -1636,7 +1636,7 @@ static Value *SimplifyICmpInst(unsigned Predicate, Value *LHS, Value *RHS,
     if (llvm::isKnownNonNull(LHSPtr) && isa<ConstantPointerNull>(RHSPtr))
       return ConstantInt::get(ITy, CmpInst::isFalseWhenEqual(Pred));
 
-    // A local instruction (alloca or noalias call) can't alias any incoming
+    // A local instruction (alloca or noalias call) can't equal any incoming
     // argument.
     if ((isa<Instruction>(LHSPtr) && isa<Argument>(RHSPtr)) ||
         (isa<Instruction>(RHSPtr) && isa<Argument>(LHSPtr)))