mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 23:48:56 +00:00
Move DWARFSectionMap to a .cpp file.
Thanks to Paul Robinson for the suggestion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308913 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df6678d054
commit
8121aebb83
@ -19,10 +19,6 @@ struct DWARFSection {
|
||||
StringRef Data;
|
||||
};
|
||||
|
||||
struct DWARFSectionMap final : public DWARFSection {
|
||||
RelocAddrMap Relocs;
|
||||
};
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
#endif // LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
|
||||
|
@ -916,6 +916,12 @@ ErrorPolicy DWARFContext::defaultErrorHandler(Error E) {
|
||||
return ErrorPolicy::Continue;
|
||||
}
|
||||
|
||||
namespace {
|
||||
struct DWARFSectionMap final : public DWARFSection {
|
||||
RelocAddrMap Relocs;
|
||||
};
|
||||
} // namespace
|
||||
|
||||
class DWARFObjInMemory final : public DWARFObject {
|
||||
bool IsLittleEndian;
|
||||
uint8_t AddressSize;
|
||||
|
Loading…
Reference in New Issue
Block a user