Suggested by @lattner in https://discourse.llvm.org/t/rfc-define-precise-arith-semantics/65507/22. Tested with: `ninja check-mlir check-mlir-integration check-mlir-mlir-spirv-cpu-runner check-mlir-mlir-vulkan-runner check-mlir-examples` and `bazel build --config=generic_clang @llvm-project//mlir:all`. Reviewed By: lattner, Mogball, rriddle, jpienaar, mehdi_amini Differential Revision: https://reviews.llvm.org/D134762
16 lines
295 B
CMake
16 lines
295 B
CMake
add_mlir_dialect_library(MLIRControlFlowDialect
|
|
ControlFlowOps.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/ControlFlow/IR
|
|
|
|
DEPENDS
|
|
MLIRControlFlowOpsIncGen
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRArithDialect
|
|
MLIRControlFlowInterfaces
|
|
MLIRIR
|
|
MLIRSideEffectInterfaces
|
|
)
|