aboutsummaryrefslogtreecommitdiff
path: root/gas/symbols.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1993-07-16 16:26:03 +0000
committerIan Lance Taylor <ian@airs.com>1993-07-16 16:26:03 +0000
commit1e9cf5658626de55a962fbd239dcc38854981b3d (patch)
treec0052fe213afa8e6afbcdd297a5688cdc6c8f4ae /gas/symbols.c
parent04acd059ee76aba39e56337bd47e141977ac1256 (diff)
downloadgdb-1e9cf5658626de55a962fbd239dcc38854981b3d.zip
gdb-1e9cf5658626de55a962fbd239dcc38854981b3d.tar.gz
gdb-1e9cf5658626de55a962fbd239dcc38854981b3d.tar.bz2
* read.c (float_cons): Simplified parsing logic. If
REPEAT_CONS_EXPRESSIONS is defined, accept a repeat count. * symbols.c (colon): Rather than a special case for TC_HPPA, use new macro tc_frob_label.
Diffstat (limited to 'gas/symbols.c')
-rw-r--r--gas/symbols.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/symbols.c b/gas/symbols.c
index 535810f..d305024 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -312,8 +312,9 @@ colon (sym_name) /* just seen "x:" - rattle symbols & frags */
symbol_table_insert (symbolP);
} /* if we have seen this symbol before */
-#ifdef TC_HPPA
- pa_define_label(symbolP);
+
+#ifdef tc_frob_label
+ tc_frob_label (symbolP);
#endif
return;