Files
clang-p2996/mlir/lib/Conversion/SCFToSPIRV/CMakeLists.txt
River Riddle 3ba66435d9 [mlir][SPIRV] Split up StandardToSPIRV now that the Standard dialect is gone
StandardToSPIRV currently contains an assortment of patterns converting from
different dialects to SPIRV. This commit splits up StandardToSPIRV into separate
conversions for each of the dialects involved (some of which already exist).

Differential Revision: https://reviews.llvm.org/D120767
2022-03-02 13:14:36 -08:00

23 lines
380 B
CMake

add_mlir_conversion_library(MLIRSCFToSPIRV
SCFToSPIRV.cpp
SCFToSPIRVPass.cpp
ADDITIONAL_HEADER_DIRS
${MLIR_MAIN_INCLUDE_DIR}/mlir/Conversion/SCFToSPIRV
DEPENDS
MLIRConversionPassIncGen
LINK_LIBS PUBLIC
MLIRArithmeticToSPIRV
MLIRFuncToSPIRV
MLIRMemRefToSPIRV
MLIRSPIRV
MLIRSPIRVConversion
MLIRIR
MLIRPass
MLIRSCF
MLIRSupport
MLIRTransforms
)