Change section_offsets to a std::vector
[deliverable/binutils-gdb.git] / gdb / coff-pe-read.c
index d0c1e050c891fbc438f6550ff66ad97748724d5d..b7f7b81ca88251e5b6dce444527b286abe5509f3 100644 (file)
@@ -266,7 +266,7 @@ add_pe_forwarded_sym (minimal_symbol_reader &reader,
      really be relocated properly, but nevertheless we make a stab at
      it, choosing an approach consistent with the history of this
      code.  */
-  baseaddr = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
+  baseaddr = objfile->section_offsets[SECT_OFF_TEXT (objfile)];
 
   reader.record_with_info (qualified_name.c_str (), vma - baseaddr, msymtype,
                           section);
This page took 0.02416 seconds and 4 git commands to generate.