From 153dfdd2c9d218fa43a3ecbcef4ffd869f2453ed Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Fri, 26 Feb 2016 06:50:27 +0000 Subject: [PATCH] [TableGen] Fix typos in comments. NFC llvm-svn: 261984 --- lib/TableGen/TGParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/TableGen/TGParser.cpp b/lib/TableGen/TGParser.cpp index e167529e4c6..d3b6c50edff 100644 --- a/lib/TableGen/TGParser.cpp +++ b/lib/TableGen/TGParser.cpp @@ -2542,7 +2542,7 @@ bool TGParser::ParseDefm(MultiClass *CurMultiClass) { // The record name construction goes as follow: // - If the def name is a string, prepend the prefix. // - If the def name is a more complex pattern, use that pattern. - // As a result, the record is instanciated before resolving + // As a result, the record is instantiated before resolving // arguments, as it would make its name a string. Record *CurRec = InstantiateMulticlassDef(*MC, DefProto.get(), DefmPrefix, SMRange(DefmLoc, @@ -2551,7 +2551,7 @@ bool TGParser::ParseDefm(MultiClass *CurMultiClass) { if (!CurRec) return true; - // Now that the record is instanciated, we can resolve arguments. + // Now that the record is instantiated, we can resolve arguments. if (ResolveMulticlassDefArgs(*MC, CurRec, DefmLoc, SubClassLoc, TArgs, TemplateVals, true/*Delete args*/)) return Error(SubClassLoc, "could not instantiate def");