Unverified Commit d48c8411 authored by forking-google-bazel-bot[bot]'s avatar forking-google-bazel-bot[bot] Committed by GitHub
Browse files

[Bazel] Fixes c94db1af (#194359)



This fixes c94db1af.

Co-authored-by: default avatarGoogle Bazel Bot <google-bazel-bot@google.com>
parent ba3d7a59
Loading
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -9228,6 +9228,7 @@ cc_library(
        ":LLVMDialect",
        ":OpenMPCommon",
        ":OpenMPDialect",
        ":OpenMPUtils",
        ":SideEffectInterfaces",
        ":Support",
        ":ToLLVMIRTranslation",
@@ -10676,6 +10677,22 @@ gentbl_cc_library(
    deps = [":PassBaseTdFiles"],
)

cc_library(
    name = "OpenMPUtils",
    srcs = glob(["lib/Dialect/OpenMP/Utils/*.cpp"]),
    hdrs = glob(["include/mlir/Dialect/OpenMP/Utils/*.h"]),
    includes = ["include"],
    deps = [
        ":AtomicInterfaces",
        ":CallOpInterfaces",
        ":IR",
        ":LLVMDialect",
        ":OpenMPDialect",
        ":Support",
        "//llvm:Support",
    ],
)

cc_library(
    name = "OpenMPTransforms",
    srcs = glob(
@@ -10687,12 +10704,15 @@ cc_library(
    includes = ["include"],
    deps = [
        ":Analysis",
        ":AtomicInterfaces",
        ":FuncDialect",
        ":FunctionInterfaces",
        ":IR",
        ":LLVMDialect",
        ":OpenACCMPOpsInterfacesIncGen",
        ":OpenMPDialect",
        ":OpenMPPassIncGen",
        ":OpenMPUtils",
        ":Pass",
        ":Support",
        ":Transforms",