mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
Move DWARFSectionMap to a .cpp file.
Thanks to Paul Robinson for the suggestion. llvm-svn: 308913
This commit is contained in:
parent
66174f57e6
commit
1c5470d3d0
@ -19,10 +19,6 @@ struct DWARFSection {
|
|||||||
StringRef Data;
|
StringRef Data;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct DWARFSectionMap final : public DWARFSection {
|
|
||||||
RelocAddrMap Relocs;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
|
||||||
#endif // LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
|
#endif // LLVM_DEBUGINFO_DWARF_DWARFSECTION_H
|
||||||
|
@ -916,6 +916,12 @@ ErrorPolicy DWARFContext::defaultErrorHandler(Error E) {
|
|||||||
return ErrorPolicy::Continue;
|
return ErrorPolicy::Continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
struct DWARFSectionMap final : public DWARFSection {
|
||||||
|
RelocAddrMap Relocs;
|
||||||
|
};
|
||||||
|
} // namespace
|
||||||
|
|
||||||
class DWARFObjInMemory final : public DWARFObject {
|
class DWARFObjInMemory final : public DWARFObject {
|
||||||
bool IsLittleEndian;
|
bool IsLittleEndian;
|
||||||
uint8_t AddressSize;
|
uint8_t AddressSize;
|
||||||
|
Loading…
Reference in New Issue
Block a user