//===- bolt/Core/Linker.h - BOLTLinker interface ----------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains the interface BOLT uses for linking. // //===----------------------------------------------------------------------===// #ifndef BOLT_CORE_LINKER_H #define BOLT_CORE_LINKER_H #include "llvm/ADT/StringRef.h" #include "llvm/Support/MemoryBufferRef.h" #include <cstdint> #include <functional> #include <optional> namespace llvm { namespace bolt { class BinarySection; class BOLTLinker { … }; } // namespace bolt } // namespace llvm #endif // BOLT_CORE_LINKER_H