[flang] Remove unused converter for now

AbstractConverter private variable is currently not used
and triggers a buildbot failure.

https://lab.llvm.org/buildbot/#/builders/180/builds/3119

This fixes the buildbot.
This commit is contained in:
Valentin Clement 2022-02-07 11:40:37 +01:00
parent c15782bcf5
commit b880455768
No known key found for this signature in database
GPG Key ID: 086D54783C928776

View File

@ -179,7 +179,7 @@ namespace {
class TypeBuilder {
public:
TypeBuilder(Fortran::lower::AbstractConverter &converter)
: converter{converter}, context{&converter.getMLIRContext()} {}
: context{&converter.getMLIRContext()} {}
//===--------------------------------------------------------------------===//
// Generate type entry points
@ -465,7 +465,6 @@ private:
//===--------------------------------------------------------------------===//
Fortran::lower::AbstractConverter &converter;
mlir::MLIRContext *context;
};