Replace usages of 'add_executable' with 'add_llvm_executable'.

--

PiperOrigin-RevId: 250691487
This commit is contained in:
River Riddle 2019-05-30 08:23:49 -07:00 committed by Mehdi Amini
parent 4a697a91de
commit 11e485ca19
7 changed files with 7 additions and 7 deletions

View File

@ -52,7 +52,7 @@ add_llvm_library(Linalg1DialectConstruction
)
target_link_libraries(Linalg1DialectConstruction PUBLIC Linalg1)
add_executable(linalg1-opt
add_llvm_executable(linalg1-opt
DialectRegistration.cpp
)
llvm_update_compile_flags(linalg1-opt)

View File

@ -1,4 +1,4 @@
add_executable(mlir-edsc-builder-api-test
add_llvm_executable(mlir-edsc-builder-api-test
builder-api-test.cpp
)

View File

@ -1,4 +1,4 @@
add_executable(mlir-sdbm-api-test
add_llvm_executable(mlir-sdbm-api-test
sdbm-api-test.cpp
)

View File

@ -16,7 +16,7 @@ target_link_libraries(MLIRTestDialect
LLVMSupport
)
add_executable(mlir-test-opt
add_llvm_executable(mlir-test-opt
${MLIR_MAIN_SRC_DIR}/../tools/mlir-opt/mlir-opt.cpp
)
llvm_update_compile_flags(mlir-test-opt)

View File

@ -23,7 +23,7 @@ add_llvm_library(MLIRCPURunnerLib
)
target_link_libraries(MLIRCPURunnerLib ${LIBS})
add_executable(mlir-cpu-runner
add_llvm_executable(mlir-cpu-runner
mlir-cpu-runner.cpp
)
llvm_update_compile_flags(mlir-cpu-runner)

View File

@ -34,7 +34,7 @@ set(LIBS
MLIRSupport
MLIRVectorOps
)
add_executable(mlir-opt
add_llvm_executable(mlir-opt
mlir-opt.cpp
)
llvm_update_compile_flags(mlir-opt)

View File

@ -12,7 +12,7 @@ set(LIBS
MLIRSupport
MLIRVectorOps
)
add_executable(mlir-translate
add_llvm_executable(mlir-translate
mlir-translate.cpp
)
llvm_update_compile_flags(mlir-translate)