diff options
author | Jim Ingham <jingham@apple.com> | 2011-03-08 01:54:01 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-03-08 01:54:01 +0000 |
commit | bd3f26069840d2743e150004ab98cc3f0c969f08 (patch) | |
tree | 156c05c646fc0066f2e1de87e9b8ed872faa3534 /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h | |
parent | 52b3e38a1f1b60729ae6370c6492720c96709632 (diff) | |
download | bcm5719-llvm-bd3f26069840d2743e150004ab98cc3f0c969f08.tar.gz bcm5719-llvm-bd3f26069840d2743e150004ab98cc3f0c969f08.zip |
I didn't notice there was already an ObjectFile::GetEntryPoint. Move that over to GetEntryPointAddress 'cause that's more consistent with other functions in ObjectFile, do the mutatis mutandi and also in the ELF case I return a section offset address rather than a bare load address.
llvm-svn: 127205
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h index 2b78da5436b..ebfde8965a5 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h @@ -89,9 +89,6 @@ public: virtual bool IsExecutable () const; - virtual lldb_private::Address - GetEntryPoint() const; - virtual size_t GetAddressByteSize() const; |