summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2023-04-19 23:27:20 +0900
committerNAKAMURA Takumi <geek4civic@gmail.com>2023-04-23 11:32:34 +0900
commitd01641b509ca3936ff5983d0740c467c5dce5e51 (patch)
tree23ceb210bbfd6f3bf7bb5f51fc1b0b67873311ff /utils
parent9423a025784b05612f5111d0bb631d345b7c0464 (diff)
downloadllvm-d01641b509ca3936ff5983d0740c467c5dce5e51.tar.gz
[Bazel] Rename LLVMTableGenGlobalISel to TableGenGlobalISel
Diffstat (limited to 'utils')
-rw-r--r--utils/bazel/llvm-project-overlay/llvm/BUILD.bazel4
-rw-r--r--utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel2
2 files changed, 3 insertions, 3 deletions
diff --git a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
index 88fd4ba122c9..be421ca0c09d 100644
--- a/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/llvm/BUILD.bazel
@@ -573,7 +573,7 @@ cc_library(
)
cc_library(
- name = "LLVMTableGenGlobalISel",
+ name = "TableGenGlobalISel",
srcs = glob([
"utils/TableGen/GlobalISel/*.cpp",
]) + [
@@ -617,9 +617,9 @@ cc_binary(
copts = llvm_copts,
stamp = 0,
deps = [
- ":LLVMTableGenGlobalISel",
":Support",
":TableGen",
+ ":TableGenGlobalISel",
":config",
":llvm-tblgen-headers",
],
diff --git a/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel b/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
index 7815952c8ff3..cfe9a18f4a03 100644
--- a/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/llvm/unittests/BUILD.bazel
@@ -688,7 +688,7 @@ cc_test(
":automata_tables_gen",
"//llvm:Support",
"//llvm:TableGen",
- "//llvm:LLVMTableGenGlobalISel",
+ "//llvm:TableGenGlobalISel",
"//third-party/unittest:gmock",
"//third-party/unittest:gtest",
"//third-party/unittest:gtest_main",