[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / utils / bazel / llvm-project-overlay / libunwind / BUILD.bazel
blob718eebfb737b90d313beb7445f8cf045ec15a601
1 # This file is licensed under the Apache License v2.0 with LLVM Exceptions.
2 # See https://llvm.org/LICENSE.txt for license information.
3 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5 package(
6     default_visibility = ["//visibility:public"],
7     licenses = ["notice"],
10 # The ld64 linker and lld-macho use the libunwind headers only for the constant
11 # definitions, in order to parse and convert DWARF to the compact encoding.
12 cc_library(
13     name = "unwind_headers_only",
14     hdrs = [
15         "include/__libunwind_config.h",
16         "include/libunwind.h",
17         "include/mach-o/compact_unwind_encoding.h",
18     ],
19     strip_include_prefix = "include",