From: Ken Raeburn Date: Tue, 15 Mar 1994 03:02:17 +0000 (+0000) Subject: (obj_coff_line): Set symbol lnno field with this_base, not line_base. (Patch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8304c303d69b0b1d016ca2db13a36842b98ed496;p=binutils-gdb.git (obj_coff_line): Set symbol lnno field with this_base, not line_base. (Patch from Andreas Arens, ari@obelix.av.rwth-aachen.de.) --- diff --git a/gas/config/obj-coffbfd.c b/gas/config/obj-coffbfd.c index 4d51556edf9..494de2276bd 100644 --- a/gas/config/obj-coffbfd.c +++ b/gas/config/obj-coffbfd.c @@ -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 (); }