[llvm-branch-commits] [llvm] 85ffbe5 - [gn build] (manually) merge f4c8b8031800
Nico Weber via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Dec 17 12:15:43 PST 2020
Author: Nico Weber
Date: 2020-12-17T15:09:51-05:00
New Revision: 85ffbe5d6a0d6bf5ad651f415ca01dc3e3c4dc76
URL: https://github.com/llvm/llvm-project/commit/85ffbe5d6a0d6bf5ad651f415ca01dc3e3c4dc76
DIFF: https://github.com/llvm/llvm-project/commit/85ffbe5d6a0d6bf5ad651f415ca01dc3e3c4dc76.diff
LOG: [gn build] (manually) merge f4c8b8031800
Added:
Modified:
llvm/utils/gn/secondary/llvm/include/llvm/Frontend/OpenMP/BUILD.gn
Removed:
################################################################################
diff --git a/llvm/utils/gn/secondary/llvm/include/llvm/Frontend/OpenMP/BUILD.gn b/llvm/utils/gn/secondary/llvm/include/llvm/Frontend/OpenMP/BUILD.gn
index 6fe62a0f5a71..bb1c8803d9ca 100644
--- a/llvm/utils/gn/secondary/llvm/include/llvm/Frontend/OpenMP/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/include/llvm/Frontend/OpenMP/BUILD.gn
@@ -1,16 +1,15 @@
import("//llvm/utils/TableGen/tablegen.gni")
-tablegen("OMP") {
+tablegen("OMPh") {
visibility = [ ":public_tablegen" ]
args = [ "-gen-directive-decl" ]
output_name = "OMP.h.inc"
+ td_file = "OMP.td"
}
-tablegen("OMPcpp") {
+tablegen("OMP") {
visibility = [ ":public_tablegen" ]
args = [ "-gen-directive-gen" ]
- output_name = "OMP.cpp.inc"
- td_file = "OMP.td"
}
# Groups all tablegen() calls that create .inc files that are included in
@@ -20,7 +19,7 @@ tablegen("OMPcpp") {
group("public_tablegen") {
public_deps = [
# Frontend/OpenMP's public headers include OMP.h.inc.
+ ":OMPh",
":OMP",
- ":OMPcpp",
]
}
More information about the llvm-branch-commits
mailing list