mirror of
https://github.com/opnsense/src.git
synced 2026-03-18 08:41:30 -04:00
24 lines
781 B
C++
24 lines
781 B
C++
//===- RecordName.h ------------------------------------------- *- C++ --*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_DEBUGINFO_CODEVIEW_RECORDNAME_H
|
|
#define LLVM_DEBUGINFO_CODEVIEW_RECORDNAME_H
|
|
|
|
#include "llvm/DebugInfo/CodeView/SymbolRecord.h"
|
|
#include "llvm/DebugInfo/CodeView/TypeCollection.h"
|
|
#include "llvm/DebugInfo/CodeView/TypeIndex.h"
|
|
|
|
namespace llvm {
|
|
namespace codeview {
|
|
std::string computeTypeName(TypeCollection &Types, TypeIndex Index);
|
|
StringRef getSymbolName(CVSymbol Sym);
|
|
} // namespace codeview
|
|
} // namespace llvm
|
|
|
|
#endif
|