The last remaining operations in the standard dialect all revolve around FuncOp/function related constructs. This patch simply handles the initial renaming (which by itself is already huge), but there are a large number of cleanups unlocked/necessary afterwards: * Removing a bunch of unnecessary dependencies on Func * Cleaning up the From/ToStandard conversion passes * Preparing for the move of FuncOp to the Func dialect See the discussion at https://discourse.llvm.org/t/standard-dialect-the-final-chapter/6061 Differential Revision: https://reviews.llvm.org/D120624
22 lines
335 B
CMake
22 lines
335 B
CMake
# Exclude tests from libMLIR.so
|
|
add_mlir_library(MLIRVectorTestPasses
|
|
TestVectorTransforms.cpp
|
|
|
|
EXCLUDE_FROM_LIBMLIR
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRAffine
|
|
MLIRAnalysis
|
|
MLIRFunc
|
|
MLIRLinalg
|
|
MLIRLinalgTransforms
|
|
MLIRLLVMIR
|
|
MLIRMemRef
|
|
MLIRPass
|
|
MLIRSCF
|
|
MLIRTransformUtils
|
|
MLIRVector
|
|
MLIRVectorToSCF
|
|
MLIRX86Vector
|
|
)
|