Skip to content

Commit

Permalink
[mlir][bazel] Fix BUILD after d041343.
Browse files Browse the repository at this point in the history
  • Loading branch information
chsigg committed Jun 4, 2024
1 parent e3c9c82 commit 22dcdcc
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10169,6 +10169,7 @@ td_library(
name = "OpenMPOpsTdFiles",
srcs = [
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/AtomicInterfaces.td",
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/OpenACCMPOpsInterfaces.td",
"include/mlir/Dialect/OpenMP/OmpCommon.td",
"include/mlir/Dialect/OpenMP/OpenMPAttrDefs.td",
"include/mlir/Dialect/OpenMP/OpenMPDialect.td",
Expand Down Expand Up @@ -10292,20 +10293,13 @@ gentbl_cc_library(

cc_library(
name = "OpenMPDialect",
srcs = glob(
[
"lib/Dialect/OpenMP/IR/*.cpp",
],
),
srcs = glob(["lib/Dialect/OpenMP/IR/*.cpp"]),
hdrs = glob(
[
"include/mlir/Dialect/OpenMP/*.h",
],
exclude =
[
"include/mlir/Dialect/OpenMP/OpenMPInterfaces.h",
],
),
include = ["include/mlir/Dialect/OpenMP/*.h"],
exclude = ["include/mlir/Dialect/OpenMP/OpenMPInterfaces.h"],
) + [
"include/mlir/Dialect/OpenACCMPCommon/Interfaces/OpenACCMPOpsInterfaces.h",
],
includes = ["include"],
textual_hdrs = [
"include/mlir/Dialect/OpenMP/OpenMPInterfaces.h",
Expand All @@ -10317,6 +10311,7 @@ cc_library(
":FuncDialect",
":IR",
":LLVMDialect",
":OpenACCMPOpsInterfacesIncGen",
":OpenMPInterfacesIncGen",
":OpenMPOpsIncGen",
":OpenMPTypeInterfacesIncGen",
Expand Down

0 comments on commit 22dcdcc

Please sign in to comment.