From d104db531ee6d821d94ffd4bb48fa3929ab01235 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 29 Sep 2021 22:23:03 -0700 Subject: [PATCH] AsmParser::getContext() - there can be only one. This should unbreak the build. --- mlir/lib/Parser/Parser.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/mlir/lib/Parser/Parser.cpp b/mlir/lib/Parser/Parser.cpp index fe9348a..881892d 100644 --- a/mlir/lib/Parser/Parser.cpp +++ b/mlir/lib/Parser/Parser.cpp @@ -1093,8 +1093,6 @@ Operation *OperationParser::parseGenericOperation(Block *insertBlock, return op; } -MLIRContext *AsmParser::getContext() const { return getBuilder().getContext(); } - namespace { class CustomOpAsmParser : public AsmParserImpl { public: -- 2.7.4