From: Fraser Cormack Date: Thu, 30 Jun 2022 10:30:12 +0000 (+0100) Subject: [IR] Fix typo in comment. NFC X-Git-Tag: upstream/15.0.7~3031 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=643e022c9ceda69ecbe9c5588aab772efda46521;p=platform%2Fupstream%2Fllvm.git [IR] Fix typo in comment. NFC --- diff --git a/llvm/lib/IR/Value.cpp b/llvm/lib/IR/Value.cpp index d4294af..3990536 100644 --- a/llvm/lib/IR/Value.cpp +++ b/llvm/lib/IR/Value.cpp @@ -408,7 +408,7 @@ void Value::takeName(Value *V) { } } - // Get V's ST, this should always succed, because V has a name. + // Get V's ST, this should always succeed, because V has a name. ValueSymbolTable *VST; bool Failure = getSymTab(V, VST); assert(!Failure && "V has a name, so it should have a ST!"); (void)Failure;