From: Michael J. Spencer Date: Thu, 7 Feb 2013 01:24:22 +0000 (+0000) Subject: [Object][ELF] Do the actual devirtualization. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=49db4691cfdf4ab5119ab3dcaa1250c16e671ab0;p=oota-llvm.git [Object][ELF] Do the actual devirtualization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174568 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index 79f01121c92..cb734002569 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 Elf_Rela_Iter; typedef ELFEntityIterator Elf_Rel_Iter;