aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2022-07-26 13:11:08 +0200
committerDmitri Gribenko <gribozavr@gmail.com>2022-07-26 13:12:36 +0200
commited33d0878ffa0eed80afe2e036db8c7c4939a3f3 (patch)
treed14ea1af1cef60a7fa823d1957ddc1a0d7668c68
parentfec5ff2a3230ac9214891879e97b67dd6db833ed (diff)
downloadllvm-ed33d0878ffa0eed80afe2e036db8c7c4939a3f3.zip
llvm-ed33d0878ffa0eed80afe2e036db8c7c4939a3f3.tar.gz
llvm-ed33d0878ffa0eed80afe2e036db8c7c4939a3f3.tar.bz2
[bazel] Run autoformatter on BUILD.bazel
-rw-r--r--utils/bazel/llvm-project-overlay/clang/BUILD.bazel15
1 files changed, 9 insertions, 6 deletions
diff --git a/utils/bazel/llvm-project-overlay/clang/BUILD.bazel b/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
index ead04c9..dc98a98 100644
--- a/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
+++ b/utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -1470,11 +1470,14 @@ gentbl(
# We generate the set of builtin headers under a special subdirectory in the
# 'bin' section of the bazel output so that they can be used as data
# dependencies. It requires listing explicitly all the generated inputs here.
-builtin_headers = glob(["lib/Headers/**/*.h"], exclude = [
- # FIXME: They are not handled in CMake side.
- "lib/Headers/openmp_wrappers/time.h",
- "lib/Headers/ppc_wrappers/nmmintrin.h",
-]) + [
+builtin_headers = glob(
+ ["lib/Headers/**/*.h"],
+ exclude = [
+ # FIXME: They are not handled in CMake side.
+ "lib/Headers/openmp_wrappers/time.h",
+ "lib/Headers/ppc_wrappers/nmmintrin.h",
+ ],
+) + [
"lib/Headers/arm_cde.h",
"lib/Headers/arm_fp16.h",
"lib/Headers/arm_mve.h",
@@ -1950,7 +1953,7 @@ template_rule(
src = "//llvm:cmake/modules/llvm-driver-template.cpp.in",
out = "clang-driver.cpp",
substitutions = {
- "@TOOL_NAME@": "clang"
+ "@TOOL_NAME@": "clang",
},
)