diff options
author | Jie Zhang <jie.zhang@analog.com> | 2009-09-01 00:24:02 +0000 |
---|---|---|
committer | Jie Zhang <jie.zhang@analog.com> | 2009-09-01 00:24:02 +0000 |
commit | 5e8c8f8f89533ff627f6d73391c712604bf705ee (patch) | |
tree | 8908798100b0a236b7489ea4b2727e109c272fb7 /gas/config/tc-fr30.h | |
parent | 194ca99d08a653841eeeb2676a19fa735c7cba89 (diff) | |
download | gdb-5e8c8f8f89533ff627f6d73391c712604bf705ee.zip gdb-5e8c8f8f89533ff627f6d73391c712604bf705ee.tar.gz gdb-5e8c8f8f89533ff627f6d73391c712604bf705ee.tar.bz2 |
* 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-fr30.h')
-rw-r--r-- | gas/config/tc-fr30.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gas/config/tc-fr30.h b/gas/config/tc-fr30.h index 54f60db..9859c8b 100644 --- a/gas/config/tc-fr30.h +++ b/gas/config/tc-fr30.h @@ -59,12 +59,8 @@ extern const struct relax_type md_relax_table[]; /* We need a special version of the TC_START_LABEL macro so that we allow the LDI:8, LDI:20, LDI:32 and delay slot instructions 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 = fr30_is_colon_insn (s)) ? 0 : ((character = ':'), 1)) extern char fr30_is_colon_insn (char *); |