Files
clang-p2996/mlir/unittests/Bytecode/CMakeLists.txt
Mehdi Amini cfd90939f7 Fix MLIR bytecode loading of resources
The bytecode reader didn't handle properly the case where resource names
conflicted and were renamed, leading to orphan handles in the IR as well
as overwriting the exiting resources.

Differential Revision: https://reviews.llvm.org/D151408
2023-05-25 00:27:59 -07:00

10 lines
164 B
CMake

add_mlir_unittest(MLIRBytecodeTests
BytecodeTest.cpp
)
target_link_libraries(MLIRBytecodeTests
PRIVATE
MLIRBytecodeReader
MLIRBytecodeWriter
MLIRParser
)