summaryrefslogtreecommitdiff
path: root/gas/config/tc-m32c.h
diff options
context:
space:
mode:
authorJie Zhang <jie.zhang@analog.com>2009-09-01 00:24:02 +0000
committerJie Zhang <jie.zhang@analog.com>2009-09-01 00:24:02 +0000
commit2dea4631469c9ac604bf6ab0a3b5b77a0a1aadb5 (patch)
treef0d5dbbbbcfa4af7e01e3981dfe4db0b10d11b6f /gas/config/tc-m32c.h
parentc4b547040ee0f3dca24059887358d70e3f721f2e (diff)
downloadbinutils-redhat-2dea4631469c9ac604bf6ab0a3b5b77a0a1aadb5.tar.gz
* read.c (TC_START_LABEL): Add a new argument.
(read_a_source_file): Pass the beginning of the symbol through the new argument of TC_START_LABEL. * config/tc-arm.h (TC_START_LABEL): Add a new argument. * config/tc-bfin.c (bfin_start_label): Only search '(' and '[' from the beginning of the symbol. * config/tc-bfin.h (TC_START_LABEL): Add the new argument. * config/tc-d30v.h (TC_START_LABEL): Likewise. * config/tc-fr30.h (TC_START_LABEL): Likewise. * config/tc-m32c.h (TC_START_LABEL): Likewise. * config/tc-m32r.h (TC_START_LABEL): Likewise. * config/tc-mep.h (TC_START_LABEL): Likewise. testsuite/ * gas/bfin/stack2.s: Add pop multiple instruction with a label on the same line. * gas/bfin/stack2.d: Adjust accordingly.
Diffstat (limited to 'gas/config/tc-m32c.h')
-rw-r--r--gas/config/tc-m32c.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/gas/config/tc-m32c.h b/gas/config/tc-m32c.h
index 1b5a4835f2..4cab1d747a 100644
--- a/gas/config/tc-m32c.h
+++ b/gas/config/tc-m32c.h
@@ -77,13 +77,9 @@ extern long md_pcrel_from_section (struct fix *, segT);
/* We need a special version of the TC_START_LABEL macro so that we
allow the :Z, :S, :Q and :G suffixes to be
- parsed as such. Note - in a HORRIBLE HACK, we make use of the
- knowledge that this marco is only ever evaluated in one place
- (read_a_source_file in read.c) where we can access the local
- variable 's' - the start of the symbol that was terminated by
- 'character'. Also we need to be able to change the contents of
+ parsed as such. We need to be able to change the contents of
the local variable 'c' which is passed to this macro as 'character'. */
-#define TC_START_LABEL(character, i_l_p) \
+#define TC_START_LABEL(character, s, i_l_p) \
((character) != ':' ? 0 : (character = m32c_is_colon_insn (s)) ? 0 : ((character = ':'), 1))
extern char m32c_is_colon_insn (char *);