forked from OSchip/llvm-project
Fix setting errorReporter.
Previously the errorReporter was incorrectly moved post creating the Lexer. PiperOrigin-RevId: 204077155
This commit is contained in:
parent
d6c4c5dbb8
commit
610e5a57f6
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue