aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Object/ELF.h
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2013-02-07 01:24:22 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2013-02-07 01:24:22 +0000
commit49db4691cfdf4ab5119ab3dcaa1250c16e671ab0 (patch)
tree5878e0f158b80a20fec6d79d13ba0e39e264cead /include/llvm/Object/ELF.h
parent945bc5bde022c790722ca1d05304bb0c986890db (diff)
[Object][ELF] Do the actual devirtualization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/ELF.h')
-rw-r--r--include/llvm/Object/ELF.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h
index 79f01121c9..cb73400256 100644
--- a/include/llvm/Object/ELF.h
+++ b/include/llvm/Object/ELF.h
@@ -698,8 +698,8 @@ public:
virtual library_iterator begin_libraries_needed() const;
virtual library_iterator end_libraries_needed() const;
- virtual dyn_iterator begin_dynamic_table() const;
- virtual dyn_iterator end_dynamic_table() const;
+ dyn_iterator begin_dynamic_table() const;
+ dyn_iterator end_dynamic_table() const;
typedef ELFEntityIterator<const Elf_Rela> Elf_Rela_Iter;
typedef ELFEntityIterator<const Elf_Rel> Elf_Rel_Iter;