24 lines · c
1//===-- DWARFDefines.h ------------------------------------------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEFINES_H10#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEFINES_H11 12#include "lldb/Core/dwarf.h"13#include <cstdint>14 15namespace lldb_private::plugin {16namespace dwarf {17 18llvm::StringRef DW_TAG_value_to_name(dw_tag_t tag);19 20} // namespace dwarf21} // namespace lldb_private::plugin22 23#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEFINES_H24