aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1991-09-01 23:40:56 +0000
committerK. Richard Pixley <rich@cygnus>1991-09-01 23:40:56 +0000
commitf4870f0f269086f28eb2bbfc44c5f9e58aff2a61 (patch)
tree85a0e79125575e3768556635ae613840b255d435 /gas
parent617ee8ed46a3d60033190a08391657b8f3b334dd (diff)
downloadgdb-f4870f0f269086f28eb2bbfc44c5f9e58aff2a61.zip
gdb-f4870f0f269086f28eb2bbfc44c5f9e58aff2a61.tar.gz
gdb-f4870f0f269086f28eb2bbfc44c5f9e58aff2a61.tar.bz2
hack around memset().
Diffstat (limited to 'gas')
-rw-r--r--gas/symbols.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/symbols.c b/gas/symbols.c
index c20eaf5..b2c0d8d 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -144,7 +144,7 @@ char *s;
{
char *symbol_decode;
int label_number;
- int label_version;
+/* int label_version; */
char *message_format = "\"%d\" (instance number %s of a local label)";
if (s[0] != 'L'
@@ -196,6 +196,7 @@ fragS *frag; /* Associated fragment */
unsigned int name_length;
char *preserved_copy_of_name;
symbolS *symbolP;
+ extern int memset();
name_length = strlen(name) + 1; /* +1 for \0 */
obstack_grow(&notes, name, name_length);