[MLIR] Remove dependency on IR for Simplex

This patch removes unnecessary dependency on IR for Simplex. This patch allows
users to use Presburger library without depending on MLIRIR.

Reviewed By: ftynse

Differential Revision: https://reviews.llvm.org/D116530
This commit is contained in:
Groverkss 2022-01-03 16:23:07 +05:30
parent 694e6bcd52
commit 4ca510b1d1
2 changed files with 0 additions and 5 deletions

View File

@ -17,7 +17,6 @@
#include "mlir/Analysis/Presburger/Fraction.h"
#include "mlir/Analysis/Presburger/IntegerPolyhedron.h"
#include "mlir/Analysis/Presburger/Matrix.h"
#include "mlir/IR/Location.h"
#include "mlir/Support/LogicalResult.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/Optional.h"

View File

@ -5,10 +5,6 @@ add_mlir_library(MLIRPresburger
Simplex.cpp
Utils.cpp
DEPENDS
MLIRBuiltinLocationAttributesIncGen
LINK_LIBS PUBLIC
MLIRIR
MLIRSupport
)