Files
clang-p2996/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
Alex Langford cf6d79711d [lldb][NFCI] Remove unused DWARF value-to-name functions (#91010)
I was cleaning up this portion of the code and realized these are
completely unused.
2024-05-06 10:11:03 -07:00

26 lines
813 B
C++

//===-- DWARFDefines.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
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEFINES_H
#define LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEFINES_H
#include "lldb/Core/dwarf.h"
#include <cstdint>
namespace lldb_private::plugin {
namespace dwarf {
llvm::StringRef DW_TAG_value_to_name(dw_tag_t tag);
const char *DW_OP_value_to_name(uint32_t val);
} // namespace dwarf
} // namespace lldb_private::plugin
#endif // LLDB_SOURCE_PLUGINS_SYMBOLFILE_DWARF_DWARFDEFINES_H