changeset 5269:bc178be7e9d6 icedtea-2.5pre01

Remove duplicate ElfFuncDescTable code in elfSymbolTable.hpp
author andrew
date Wed, 05 Feb 2014 01:12:11 +0000
parents 39f7026ddf94
children c9da84d02a61
files src/share/vm/utilities/elfSymbolTable.hpp
diffstat 1 files changed, 0 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/utilities/elfSymbolTable.hpp	Wed Feb 05 01:08:40 2014 +0000
+++ b/src/share/vm/utilities/elfSymbolTable.hpp	Wed Feb 05 01:12:11 2014 +0000
@@ -65,35 +65,6 @@
   NullDecoder::decoder_status  m_status;
 };
 
-#if defined(PPC64)
-
-class ElfFuncDescTable: public CHeapObj<mtInternal> {
-  friend class ElfFile;
- public:
-  ElfFuncDescTable(FILE* file, Elf_Shdr shdr);
-  ~ElfFuncDescTable();
-
-  // return the function address for the function descriptor at 'index' or NULL on error
-  address lookup(Elf_Word index);
-
-  NullDecoder::decoder_status get_status() { return m_status; };
-
- protected:
-  // holds the complete function descriptor section if
-  // we can allocate enough memory
-  address*            m_funcDescs;
-
-  // file contains string table
-  FILE*               m_file;
-
-  // section header
-  Elf_Shdr            m_shdr;
-
-  NullDecoder::decoder_status  m_status;
-};
-
-#endif
-
 #endif // !_WINDOWS and !__APPLE__
 
 #endif // SHARE_VM_UTILITIES_ELF_SYMBOL_TABLE_HPP