File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
utils/bazel/llvm-project-overlay Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -623,15 +623,15 @@ cc_library(
623
623
srcs = [
624
624
"utils/TableGen/Common/GlobalISel/CodeExpander.cpp" ,
625
625
],
626
- hdrs = glob ( [
626
+ hdrs = [
627
627
# We have to include these headers here as well as in the `hdrs` below
628
628
# to allow the `.cpp` files to use file-relative-inclusion to find
629
629
# them, even though consumers of this library use inclusion relative to
630
630
# `utils/TableGen` with the `strip_includes_prefix` of this library.
631
631
# This mixture appears to be incompatible with header modules.
632
632
"utils/TableGen/Common/GlobalISel/CodeExpander.h" ,
633
633
"utils/TableGen/Common/GlobalISel/CodeExpansions.h" ,
634
- ]) ,
634
+ ],
635
635
copts = llvm_copts ,
636
636
features = ["-header_modules" ],
637
637
strip_include_prefix = "utils/TableGen" ,
@@ -665,10 +665,11 @@ cc_binary(
665
665
# listed here. MC uses headers produced by tablegen, so it cannot be a
666
666
# regular dependency.
667
667
"include/llvm/MC/*.h" ,
668
- "include/llvm/TargetParser/SubtargetFeature.h" ,
669
668
],
670
669
exclude = ["utils/TableGen/Common/GlobalISel/CodeExpander.cpp" ],
671
- ),
670
+ ) + [
671
+ "include/llvm/TargetParser/SubtargetFeature.h" ,
672
+ ],
672
673
copts = llvm_copts ,
673
674
includes = ["utils/TableGen" ],
674
675
stamp = 0 ,
Original file line number Diff line number Diff line change @@ -357,10 +357,11 @@ cc_test(
357
357
[
358
358
"IR/*.cpp" ,
359
359
"IR/*.h" ,
360
- "Support/KnownBitsTest.h" ,
361
360
],
362
361
allow_empty = False ,
363
- ),
362
+ ) + [
363
+ "Support/KnownBitsTest.h" ,
364
+ ],
364
365
shard_count = 20 ,
365
366
deps = [
366
367
"//llvm:Analysis" ,
Original file line number Diff line number Diff line change @@ -8197,8 +8197,8 @@ cc_library(
8197
8197
deps = [
8198
8198
":ConversionPassIncGen" ,
8199
8199
":EmitCDialect" ,
8200
- ":MemRefDialect" ,
8201
8200
":IR" ,
8201
+ ":MemRefDialect" ,
8202
8202
":Pass" ,
8203
8203
":Support" ,
8204
8204
":TransformUtils" ,
You can’t perform that action at this time.
0 commit comments