[clang][Bazel] Add missing dependency from symbol_graph to llvm:support.
authorAdrian Kuegel <akuegel@google.com>
Mon, 21 Mar 2022 07:41:17 +0000 (08:41 +0100)
committerAdrian Kuegel <akuegel@google.com>
Mon, 21 Mar 2022 07:43:06 +0000 (08:43 +0100)
This did not show up as build error because the build also works if the
dependency is transitively available. But there should be a direct
dependency anyway.

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

index cf127dd..d8443fd 100644 (file)
@@ -1298,6 +1298,7 @@ cc_library(
         ":basic",
         ":frontend",
         ":index",
+        "//llvm:Support",
     ],
 )