The assert message was previously ignored. The lowered IR now calls `puts` it in case of a failed assertion. Differential Revision: https://reviews.llvm.org/D138647
15 lines
253 B
CMake
15 lines
253 B
CMake
# Exclude tests from libMLIR.so
|
|
add_mlir_library(MLIRControlFlowTestPasses
|
|
TestAssert.cpp
|
|
|
|
EXCLUDE_FROM_LIBMLIR
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRControlFlowToLLVM
|
|
MLIRFuncDialect
|
|
MLIRLLVMCommonConversion
|
|
MLIRLLVMDialect
|
|
MLIRPass
|
|
MLIRTransforms
|
|
)
|