summaryrefslogtreecommitdiff
path: root/gas/symbols.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2008-10-21 00:26:17 +0000
committerAlan Modra <amodra@bigpond.net.au>2008-10-21 00:26:17 +0000
commitc6a4a1d19f885d8916691785566a5efd2c5e3add (patch)
treef043df48e86e3b2f6096e70c7b4d0f44e94da8e6 /gas/symbols.c
parent2333c38fd379076338edc05d2bc75fc7d53f6d02 (diff)
downloadbinutils-redhat-c6a4a1d19f885d8916691785566a5efd2c5e3add.tar.gz
Remove unnecessary casts on obstack_alloc invocations.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r--gas/symbols.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/symbols.c b/gas/symbols.c
index 7e4f982f38..660b2a4f14 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -137,7 +137,7 @@ symbol_create (const char *name, /* It is copied, the caller can destroy/modify.
preserved_copy_of_name = save_symbol_name (name);
- symbolP = (symbolS *) obstack_alloc (&notes, sizeof (symbolS));
+ symbolP = obstack_alloc (&notes, sizeof (symbolS));
/* symbol must be born in some fixed state. This seems as good as any. */
memset (symbolP, 0, sizeof (symbolS));
@@ -197,7 +197,7 @@ local_symbol_make (const char *name, segT section, valueT value, fragS *frag)
name_copy = save_symbol_name (name);
- ret = (struct local_symbol *) obstack_alloc (&notes, sizeof *ret);
+ ret = obstack_alloc (&notes, sizeof *ret);
ret->lsy_marker = NULL;
ret->lsy_name = name_copy;
ret->lsy_section = section;