1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[TableGen] Fix typos in comments. NFC

llvm-svn: 261984
This commit is contained in:
Craig Topper 2016-02-26 06:50:27 +00:00
parent 3a6e292b6d
commit 153dfdd2c9

View File

@ -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");