mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Add virtual desctructor to FrameEntry to avoid error on delete-non-virtual-dtor
llvm-svn: 174483
This commit is contained in:
parent
5bd979b50b
commit
bd977c5c69
@ -23,6 +23,9 @@ public:
|
||||
FrameEntry(FrameKind K, DataExtractor D, uint64_t Offset, uint64_t Length)
|
||||
: Kind(K), Data(D), Offset(Offset), Length(Length) {}
|
||||
|
||||
virtual ~FrameEntry() {
|
||||
}
|
||||
|
||||
FrameKind getKind() const { return Kind; }
|
||||
|
||||
virtual void dumpHeader(raw_ostream &OS) const = 0;
|
||||
@ -54,6 +57,9 @@ public:
|
||||
DataAlignmentFactor(DataAlignmentFactor),
|
||||
ReturnAddressRegister(ReturnAddressRegister) {}
|
||||
|
||||
~CIE() {
|
||||
}
|
||||
|
||||
void dumpHeader(raw_ostream &OS) const {
|
||||
OS << format("%08x %08x %08x CIE", Offset, Length, DW_CIE_ID) << "\n";
|
||||
OS << format(" Version: %d\n", Version);
|
||||
@ -89,6 +95,9 @@ public:
|
||||
InitialLocation(InitialLocation), AddressRange(AddressRange),
|
||||
LinkedCIE(NULL) {}
|
||||
|
||||
~FDE() {
|
||||
}
|
||||
|
||||
void dumpHeader(raw_ostream &OS) const {
|
||||
OS << format("%08x %08x %08x FDE ", Offset, Length, LinkedCIEOffset);
|
||||
OS << format("cie=%08x pc=%08x...%08x\n",
|
||||
|
Loading…
Reference in New Issue
Block a user