From: Ken Raeburn Date: Wed, 21 Sep 1994 22:21:25 +0000 (+0000) Subject: Combine two existing mechanisms for copying symbol attributes, and fix a bug: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef1988706623f7b739ec04a035dcd846f13da106;p=binutils-gdb.git Combine two existing mechanisms for copying symbol attributes, and fix a bug: * symbols.c (copy_symbol_attributes): New function. Copies BFD symbol flags and calls OBJ_COPY_SYMBOL_ATTRIBUTES. (resolve_symbol_value, case O_symbol): Call it, if X_add_number is zero. Don't call obj_frob_forward_symbol. * read.c (pseudo_set): Call copy_symbol_attributes, but only if X_add_number is zero. * config/obj-elf.h (obj_frob_forward_symbol): Deleted. --- diff --git a/gas/read.c b/gas/read.c index 305cd613725..48739de2b11 100644 --- a/gas/read.c +++ b/gas/read.c @@ -1579,7 +1579,8 @@ pseudo_set (symbolP) break; case O_symbol: - if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section) + if (S_GET_SEGMENT (exp.X_add_symbol) == undefined_section + || exp.X_add_number != 0) symbolP->sy_value = exp; else { @@ -1595,15 +1596,7 @@ pseudo_set (symbolP) S_SET_VALUE (symbolP, exp.X_add_number + S_GET_VALUE (s)); symbolP->sy_frag = s->sy_frag; -#ifdef BFD_ASSEMBLER - /* In an expression, transfer the settings of these flags. - The user can override later, of course. */ -#define COPIED_SYMFLAGS (BSF_FUNCTION) - symbolP->bsym->flags |= s->bsym->flags & COPIED_SYMFLAGS; -#endif -#ifdef OBJ_COPY_SYMBOL_ATTRIBUTES - OBJ_COPY_SYMBOL_ATTRIBUTES (symbolP, s); -#endif + copy_symbol_attributes (symbolP, s); } break;