Files
clang-p2996/mlir/lib/Dialect/SCF/CMakeLists.txt
River Riddle 1f971e23f0 [mlir] Trim a huge number of unnecessary dependencies on the Func dialect
The Func has a large number of legacy dependencies carried over from the old
Standard dialect, which was pervasive and contained a large number of varied
operations. With the split of the standard dialect and its demise, a lot of lingering
dead dependencies have survived to the Func dialect. This commit removes a
large majority of then, greatly reducing the dependence surface area of the
Func dialect.
2022-03-01 12:10:04 -08:00

21 lines
332 B
CMake

add_mlir_dialect_library(MLIRSCF
SCF.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/LoopOps
DEPENDS
MLIRSCFOpsIncGen
LINK_LIBS PUBLIC
MLIRArithmetic
MLIRBufferization
MLIRControlFlow
MLIRIR
MLIRLoopLikeInterface
MLIRSideEffectInterfaces
)
add_subdirectory(Transforms)
add_subdirectory(Utils)