Skip to content

Commit d1b473c

Browse files
authored
Fix bazel build past 7251243 (#79282)
Fix bazel build past 7251243
1 parent 89dae79 commit d1b473c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

utils/bazel/llvm-project-overlay/llvm/BUILD.bazel

+5-1
Original file line numberDiff line numberDiff line change
@@ -2577,7 +2577,10 @@ cc_library(
25772577
"lib/Passes/*.cpp",
25782578
"lib/Passes/*.h",
25792579
]),
2580-
hdrs = glob(["include/llvm/Passes/*.h"]) + ["include/llvm-c/Transforms/PassBuilder.h"],
2580+
hdrs = glob([
2581+
"include/llvm/Passes/*.h",
2582+
"include/llvm/Passes/*.def",
2583+
]) + ["include/llvm-c/Transforms/PassBuilder.h"],
25812584
copts = llvm_copts,
25822585
deps = [
25832586
":AggressiveInstCombine",
@@ -2591,6 +2594,7 @@ cc_library(
25912594
":IRPrinter",
25922595
":InstCombine",
25932596
":Instrumentation",
2597+
":MC",
25942598
":MLPolicies",
25952599
":ObjCARC",
25962600
":Scalar",

0 commit comments

Comments
 (0)