[PATCH] D111347: [Bazel] Update config for 3b01cf9286
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 7 12:51:34 PDT 2021
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf6e321f74d8d: [Bazel] Update config for 3b01cf9286 (authored by GMNGeoffrey).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D111347/new/
https://reviews.llvm.org/D111347
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -5599,6 +5599,7 @@
srcs = [
"include/mlir/Dialect/OpenMP/OmpCommon.td",
"include/mlir/Dialect/OpenMP/OpenMPOps.td",
+ "include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td",
],
deps = [
":LLVMOpsTdFiles",
@@ -5658,6 +5659,24 @@
deps = [":OpenMPOpsTdFiles"],
)
+gentbl_cc_library(
+ name = "OpenMPInterfacesIncGen",
+ strip_include_prefix = "include",
+ tbl_outs = [
+ (
+ ["-gen-op-interface-decls"],
+ "include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.h.inc",
+ ),
+ (
+ ["-gen-op-interface-defs"],
+ "include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.cpp.inc",
+ ),
+ ],
+ tblgen = ":mlir-tblgen",
+ td_file = "include/mlir/Dialect/OpenMP/OpenMPOpsInterfaces.td",
+ deps = [":OpenMPOpsTdFiles"],
+)
+
cc_library(
name = "OpenMPDialect",
srcs = glob(
@@ -5674,6 +5693,7 @@
":ControlFlowInterfaces",
":IR",
":LLVMDialect",
+ ":OpenMPInterfacesIncGen",
":OpenMPOpsIncGen",
":SideEffectInterfaces",
":StandardOps",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111347.377975.patch
Type: text/x-patch
Size: 1366 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211007/88bb6a4f/attachment.bin>
More information about the llvm-commits
mailing list