summaryrefslogtreecommitdiff
path: root/gas/symbols.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2006-11-08 06:31:39 +0000
committerAlan Modra <amodra@bigpond.net.au>2006-11-08 06:31:39 +0000
commitc8493ca8d9eaf2ad137177760e5d16d468fd0987 (patch)
tree4ddbbc099cac838b9a18dd414d1074bc32f2e1d4 /gas/symbols.c
parentb94ae00ea1083283a7744cd4ed6cd7a40695f6d4 (diff)
downloadbinutils-redhat-c8493ca8d9eaf2ad137177760e5d16d468fd0987.tar.gz
* symbols.c (symbol_create, symbol_clone): Don't set udata.p.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r--gas/symbols.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gas/symbols.c b/gas/symbols.c
index bd4745083e..dccc46af92 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -145,7 +145,6 @@ symbol_create (const char *name, /* It is copied, the caller can destroy/modify.
symbolP->bsym = bfd_make_empty_symbol (stdoutput);
if (symbolP->bsym == NULL)
as_fatal ("bfd_make_empty_symbol: %s", bfd_errmsg (bfd_get_error ()));
- symbolP->bsym->udata.p = (PTR) symbolP;
S_SET_NAME (symbolP, preserved_copy_of_name);
S_SET_SEGMENT (symbolP, segment);
@@ -575,7 +574,6 @@ symbol_clone (symbolS *orgsymP, int replace)
bsymnew->name = bsymorg->name;
bsymnew->flags = bsymorg->flags;
bsymnew->section = bsymorg->section;
- bsymnew->udata.p = (PTR) newsymP;
bfd_copy_private_symbol_data (bfd_asymbol_bfd (bsymorg), bsymorg,
bfd_asymbol_bfd (bsymnew), bsymnew);