[TableGen] Remove a TODO comment that is no longer relevant [NFC]
authorPaul C. Anagnostopoulos <paul@windfall.com>
Mon, 26 Apr 2021 14:00:19 +0000 (10:00 -0400)
committerPaul C. Anagnostopoulos <paul@windfall.com>
Mon, 26 Apr 2021 14:03:12 +0000 (10:03 -0400)
llvm/lib/TableGen/TGParser.cpp

index 1e5915f..07cf89b 100644 (file)
@@ -2056,8 +2056,6 @@ Init *TGParser::ParseSimpleValue(Record *CurRec, RecTy *ItemType,
 
     // Loop through the arguments that were not specified and make sure
     // they have a complete value.
-    // TODO: If we just keep a required argument count, we can do away
-    //       with this checking.
     ArrayRef<Init *> TArgs = Class->getTemplateArgs();
     for (unsigned I = Args.size(), E = TArgs.size(); I < E; ++I) {
       RecordVal *Arg = Class->getValue(TArgs[I]);