//===- BTFContext.h ---------------------------------------------*- 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 // //===----------------------------------------------------------------------===// // // BTFContext interface is used by llvm-objdump tool to print source // code alongside disassembly. // //===----------------------------------------------------------------------===// #ifndef LLVM_DEBUGINFO_BTF_BTFCONTEXT_H #define LLVM_DEBUGINFO_BTF_BTFCONTEXT_H #include "llvm/DebugInfo/BTF/BTFParser.h" #include "llvm/DebugInfo/DIContext.h" namespace llvm { class BTFContext final : public DIContext { … }; } // end namespace llvm #endif // LLVM_DEBUGINFO_BTF_BTFCONTEXT_H