diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2012-02-25 19:12:58 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2012-02-25 19:12:58 +0000 |
commit | 6bfb9d6a13261948c07599922246ac80e2ba66d0 (patch) | |
tree | fa63e17aea1f9eeccb12f67bcd8720f19fe056c2 /lib/Analysis/InstructionSimplify.cpp | |
parent | 1e4e1c768bcbc548345348c062f402967c78c48a (diff) |
Fix five-letter typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151450 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/InstructionSimplify.cpp')
-rw-r--r-- | lib/Analysis/InstructionSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/InstructionSimplify.cpp b/lib/Analysis/InstructionSimplify.cpp index a6a080e381..11afa85159 100644 --- a/lib/Analysis/InstructionSimplify.cpp +++ b/lib/Analysis/InstructionSimplify.cpp @@ -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))) |