From: Roman Lebedev Date: Sat, 29 Aug 2020 11:53:15 +0000 (+0300) Subject: [NFC] Instruction::isIdenticalToWhenDefined(): s/nessesairly/necessarily/ X-Git-Tag: llvmorg-13-init~13349 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65b3854e106e30b88f6b10e62a3448ac953b797a;p=platform%2Fupstream%2Fllvm.git [NFC] Instruction::isIdenticalToWhenDefined(): s/nessesairly/necessarily/ --- diff --git a/llvm/lib/IR/Instruction.cpp b/llvm/lib/IR/Instruction.cpp index f091425..e1472a7 100644 --- a/llvm/lib/IR/Instruction.cpp +++ b/llvm/lib/IR/Instruction.cpp @@ -486,7 +486,7 @@ bool Instruction::isIdenticalToWhenDefined(const Instruction *I) const { // PHI nodes are special. if (const PHINode *thisPHI = dyn_cast(this)) { const PHINode *otherPHI = cast(I); - // PHI nodes don't nessesairly have their operands in the same order, + // PHI nodes don't necessarily have their operands in the same order, // so we shouldn't just compare ranges of incoming blocks/values. // If both PHI's are in the same basic block, which is the most interesting