Fix setting errorReporter.

Previously the errorReporter was incorrectly moved post creating the Lexer.

PiperOrigin-RevId: 204077155
This commit is contained in:
Jacques Pienaar 2018-07-11 00:07:36 -07:00 committed by jpienaar
parent d6c4c5dbb8
commit 610e5a57f6
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public:
SMDiagnosticHandlerTy errorReporter)
: context(module->getContext()), module(module),
lex(sourceMgr, errorReporter), curToken(lex.lexToken()),
errorReporter(std::move(errorReporter)) {}
errorReporter(errorReporter) {}
// A map from affine map identifier to AffineMap.
llvm::StringMap<AffineMap *> affineMapDefinitions;