1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

[Object][ELF] Add a way to get the dynamic symbol table section.

llvm-svn: 174682
This commit is contained in:
Michael J. Spencer 2013-02-07 23:37:58 +00:00
parent dd5b92981e
commit 3abd3b4219

View File

@ -702,6 +702,10 @@ public:
virtual library_iterator begin_libraries_needed() const;
virtual library_iterator end_libraries_needed() const;
const Elf_Shdr *getDynamicSymbolTableSectionHeader() const {
return SymbolTableSections[0];
}
Elf_Dyn_iterator begin_dynamic_table() const;
Elf_Dyn_iterator end_dynamic_table() const;