From ed33d0878ffa0eed80afe2e036db8c7c4939a3f3 Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Tue, 26 Jul 2022 13:11:08 +0200 Subject: [PATCH] [bazel] Run autoformatter on BUILD.bazel --- .../bazel/llvm-project-overlay/clang/BUILD.bazel | 15 +++++++++------ 1 file 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 ead04c959437..dc98a98276e0 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", }, )