mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 05:35:11 +00:00
99ff4a2dba
It would be more convenient to pass DWARFSection into DWARFUnitSection constructor, instead of passing its components (Data and RelocAddrMap) as a separate arguments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219252 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
550 B
C++
25 lines
550 B
C++
//===-- DWARFSection.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_LIB_DEBUGINFO_DWARFSECTION_H
|
|
#define LLVM_LIB_DEBUGINFO_DWARFSECTION_H
|
|
|
|
#include "DWARFRelocMap.h"
|
|
|
|
namespace llvm {
|
|
|
|
struct DWARFSection {
|
|
StringRef Data;
|
|
RelocAddrMap Relocs;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|