diff options
Diffstat (limited to 'contrib/llvm/lib/TableGen/TGParser.h')
| -rw-r--r-- | contrib/llvm/lib/TableGen/TGParser.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/llvm/lib/TableGen/TGParser.h b/contrib/llvm/lib/TableGen/TGParser.h index 0a28b3a03aa1..e3849043513b 100644 --- a/contrib/llvm/lib/TableGen/TGParser.h +++ b/contrib/llvm/lib/TableGen/TGParser.h @@ -115,8 +115,9 @@ class TGParser {    };  public: -  TGParser(SourceMgr &SrcMgr, RecordKeeper &records) -      : Lex(SrcMgr), CurMultiClass(nullptr), Records(records) {} +  TGParser(SourceMgr &SrcMgr, ArrayRef<std::string> Macros, +           RecordKeeper &records) +    : Lex(SrcMgr, Macros), CurMultiClass(nullptr), Records(records) {}    /// ParseFile - Main entrypoint for parsing a tblgen file.  These parser    /// routines return true on error, or false on success.  | 
