[MLIR] LLVMMLIRTableGen -> MLIRTableGen

Like all MLIR libraries, this should start with 'MLIR'

Differential Revision: https://reviews.llvm.org/D80102
This commit is contained in:
Stephen Neuendorffer 2020-05-17 21:43:32 -07:00
parent d5b1643c74
commit b54635e0ec
3 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
# has a dependance on MLIRIR, which must depend on libLLVM.so). This works
# in this special case because this library is static.
llvm_add_library(LLVMMLIRTableGen STATIC
llvm_add_library(MLIRTableGen STATIC
Argument.cpp
Attribute.cpp
Constraint.cpp
@ -32,4 +32,4 @@ llvm_add_library(LLVMMLIRTableGen STATIC
${MLIR_MAIN_INCLUDE_DIR}/mlir/TableGen
)
mlir_check_all_link_libraries(LLVMMLIRTableGen)
mlir_check_all_link_libraries(MLIRTableGen)

View File

@ -24,6 +24,6 @@ add_tablegen(mlir-tblgen MLIR
set_target_properties(mlir-tblgen PROPERTIES FOLDER "Tablegenning")
target_link_libraries(mlir-tblgen
PRIVATE
LLVMMLIRTableGen)
MLIRTableGen)
mlir_check_all_link_libraries(mlir-tblgen)

View File

@ -18,4 +18,4 @@ add_dependencies(MLIRTableGenTests MLIRTableGenEnumsIncGen)
add_dependencies(MLIRTableGenTests MLIRTableGenStructAttrIncGen)
target_link_libraries(MLIRTableGenTests
PRIVATE LLVMMLIRTableGen MLIRIR)
PRIVATE MLIRTableGen MLIRIR)