diff options
author | Pavel Labath <pavel@labath.sk> | 2019-01-10 09:32:31 +0000 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2019-01-10 09:32:31 +0000 |
commit | 976af43ba9945d598d79779cf686325597a1461f (patch) | |
tree | 5cf6d65c42a53c548bedfcbc48e4ad6d0be99818 /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h | |
parent | 8f85b9f86718c269d49be4eb2bb73466a95f5347 (diff) | |
download | bcm5719-llvm-976af43ba9945d598d79779cf686325597a1461f.tar.gz bcm5719-llvm-976af43ba9945d598d79779cf686325597a1461f.zip |
Implement ObjectFileELF::GetBaseAddress
Summary:
The concept of a base address was already present in the implementation
(it's needed for computing section load addresses properly), but it was
never exposed through this function. This fixes that.
llvm-svn: 350804
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h index ff08eb2a1bb..08fd5bdc60a 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h @@ -134,6 +134,8 @@ public: lldb_private::Address GetEntryPointAddress() override; + lldb_private::Address GetBaseAddress() override; + ObjectFile::Type CalculateType() override; ObjectFile::Strata CalculateStrata() override; |