* symbols.c (resolve_symbol_value): Remove "finalize" param,
[deliverable/binutils-gdb.git] / gas / config / obj-coff.c
index 37aa6404df0c0e56855e488d846a80f42123f00d..1961fec5c62b08fb0cd3e1acf02e580b434bf914 100644 (file)
@@ -1972,7 +1972,7 @@ do_relocs_for (abfd, h, file_cursor)
                      /* Turn the segment of the symbol into an offset.  */
                      if (symbol_ptr)
                        {
-                         resolve_symbol_value (symbol_ptr, finalize_syms);
+                         resolve_symbol_value (symbol_ptr);
                          if (! symbol_ptr->sy_resolved)
                            {
                              char *file;
@@ -2953,7 +2953,7 @@ yank_symbols ()
              S_SET_SEGMENT (symbolP, SEG_E0);
            }                   /* push data into text */
 
-         resolve_symbol_value (symbolP, finalize_syms);
+         resolve_symbol_value (symbolP);
 
          if (S_GET_STORAGE_CLASS (symbolP) == C_NULL)
            {
@@ -4186,7 +4186,7 @@ fixup_segment (segP, this_segment_type)
       /* Make sure the symbols have been resolved; this may not have
          happened if these are expression symbols.  */
       if (add_symbolP != NULL && ! add_symbolP->sy_resolved)
-       resolve_symbol_value (add_symbolP, finalize_syms);
+       resolve_symbol_value (add_symbolP);
 
       if (add_symbolP != NULL)
        {
@@ -4216,7 +4216,7 @@ fixup_segment (segP, this_segment_type)
        }
 
       if (sub_symbolP != NULL && ! sub_symbolP->sy_resolved)
-       resolve_symbol_value (sub_symbolP, finalize_syms);
+       resolve_symbol_value (sub_symbolP);
 
       if (add_symbolP != NULL
          && add_symbolP->sy_mri_common)
This page took 0.024032 seconds and 4 git commands to generate.