Introduce new section flag: SEC_ELF_OCTETS
[deliverable/binutils-gdb.git] / bfd / syms.c
index 146f674a1304c38b8dedda178995cad8f922a6f1..ec7d2c8dbafc720e6a8125bc52358e77d39c9611 100644 (file)
@@ -1090,7 +1090,8 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
                  || r->howto->pc_relative
                  || r->howto->bitpos != 0
                  || r->howto->dst_mask != 0xffffffff
-                 || r->address * bfd_octets_per_byte (abfd) + 4 > stabsize)
+                 || (r->address * bfd_octets_per_byte (abfd, NULL) + 4
+                     > stabsize))
                {
                  _bfd_error_handler
                    (_("unsupported .stab relocation"));
@@ -1101,12 +1102,13 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
                }
 
              val = bfd_get_32 (abfd, info->stabs
-                               + r->address * bfd_octets_per_byte (abfd));
+                               + (r->address
+                                  * bfd_octets_per_byte (abfd, NULL)));
              val &= r->howto->src_mask;
              sym = *r->sym_ptr_ptr;
              val += sym->value + sym->section->vma + r->addend;
              bfd_put_32 (abfd, (bfd_vma) val, info->stabs
-                         + r->address * bfd_octets_per_byte (abfd));
+                         + r->address * bfd_octets_per_byte (abfd, NULL));
            }
        }
 
This page took 0.023517 seconds and 4 git commands to generate.