(obj_coff_line): Set symbol lnno field with this_base, not line_base. (Patch
authorKen Raeburn <raeburn@cygnus>
Tue, 15 Mar 1994 03:02:17 +0000 (03:02 +0000)
committerKen Raeburn <raeburn@cygnus>
Tue, 15 Mar 1994 03:02:17 +0000 (03:02 +0000)
from Andreas Arens, ari@obelix.av.rwth-aachen.de.)

gas/config/obj-coffbfd.c

index 4d51556..494de22 100644 (file)
@@ -1125,7 +1125,6 @@ obj_coff_line (ignore)
       line_base = this_base;
     }
 
-
 #ifndef NO_LISTING
   {
     extern int listing;
@@ -1136,7 +1135,7 @@ obj_coff_line (ignore)
   }
 #endif
   S_SET_NUMBER_AUXILIARY (def_symbol_in_progress, 1);
-  SA_SET_SYM_LNNO (def_symbol_in_progress, line_base);
+  SA_SET_SYM_LNNO (def_symbol_in_progress, this_base);
 
   demand_empty_rest_of_line ();
 }