forked from OSchip/llvm-project
[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:
parent
694e6bcd52
commit
4ca510b1d1
|
@ -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"
|
||||
|
|
|
@ -5,10 +5,6 @@ add_mlir_library(MLIRPresburger
|
|||
Simplex.cpp
|
||||
Utils.cpp
|
||||
|
||||
DEPENDS
|
||||
MLIRBuiltinLocationAttributesIncGen
|
||||
|
||||
LINK_LIBS PUBLIC
|
||||
MLIRIR
|
||||
MLIRSupport
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue