Fix @pltoff linker segfault for non-shared link.
[deliverable/binutils-gdb.git] / bfd / irix-core.c
index 486842214f4c1e748bfef0db31fe86f664a8215c..740907b86eca0278d33e3b7c44efba514d438f92 100644 (file)
@@ -161,11 +161,11 @@ do_sections (abfd, coreout)
 }
 
 static asection *
-make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos)
+make_bfd_asection (abfd, name, flags, size, vma, filepos)
      bfd *abfd;
      const char *name;
      flagword flags;
-     bfd_size_type _raw_size;
+     bfd_size_type size;
      bfd_vma vma;
      file_ptr filepos;
 {
@@ -176,7 +176,7 @@ make_bfd_asection (abfd, name, flags, _raw_size, vma, filepos)
     return NULL;
 
   asect->flags = flags;
-  asect->_raw_size = _raw_size;
+  asect->size = size;
   asect->vma = vma;
   asect->filepos = filepos;
   asect->alignment_power = 4;
This page took 0.023789 seconds and 4 git commands to generate.