gdb: introduce objfile text_section_offset and data_section_offset methods
[deliverable/binutils-gdb.git] / gdb / psympriv.h
index e7630050e1803573ca22d4ca0c53bc9be8c30999..be03465992de58613e9f922a9038c6b53aa550fc 100644 (file)
@@ -119,13 +119,13 @@ struct partial_symtab
   /* Return the relocated low text address of this partial_symtab.  */
   CORE_ADDR text_low (struct objfile *objfile) const
   {
-    return m_text_low + objfile->section_offsets[SECT_OFF_TEXT (objfile)];
+    return m_text_low + objfile->text_section_offset ();
   }
 
   /* Return the relocated high text address of this partial_symtab.  */
   CORE_ADDR text_high (struct objfile *objfile) const
   {
-    return m_text_high + objfile->section_offsets[SECT_OFF_TEXT (objfile)];
+    return m_text_high + objfile->text_section_offset ();
   }
 
   /* Set the low text address of this partial_symtab.  */
This page took 0.026825 seconds and 4 git commands to generate.