diff options
author | Alan Modra <amodra@gmail.com> | 2001-07-30 06:15:49 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-07-30 06:15:49 +0000 |
commit | 468cced8b997b43359f2610c43a223d907a9bea7 (patch) | |
tree | db2276f7ee47ee5acfadd658dbc8086d7b59e142 /gas/config/tc-ppc.c | |
parent | 5b2e4f117fa00ecf3846da58cf8756ec2e956052 (diff) | |
download | gdb-468cced8b997b43359f2610c43a223d907a9bea7.zip gdb-468cced8b997b43359f2610c43a223d907a9bea7.tar.gz gdb-468cced8b997b43359f2610c43a223d907a9bea7.tar.bz2 |
* config/obj-elf.c (obj_elf_symver): Temporarily modify lex_type
to include '@' in symbol names when parsing versioned symbols
rather than calling get_symbol_end multiple times.
* config/tc-i370.c (register_name): Format fixes. Don't call
get_symbol_end after parsing number.
* config/tc-mn10200.c (data_register_name): Format fixes. Hoist
code out of conditional.
(address_register_name): Likewise.
(other_register_name): Likewise.
* config/tc-mn10300.c (r_register_name): Likewise.
(xr_register_name): Likewise.
(data_register_name): Likewise.
(address_register_name): Likewise.
(other_register_name): Likewise.
* config/tc-ppc.c (register_name): Likewise.
* config/tc-s390.c (register_name): Likewise.
Diffstat (limited to 'gas/config/tc-ppc.c')
-rw-r--r-- | gas/config/tc-ppc.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 88f9b8e..621b6db 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -586,6 +586,9 @@ register_name (expressionP) c = get_symbol_end (); reg_number = reg_name_search (pre_defined_registers, REG_NAME_CNT, name); + /* Put back the delimiting char. */ + *input_line_pointer = c; + /* Look to see if it's in the register table. */ if (reg_number >= 0) { @@ -595,17 +598,12 @@ register_name (expressionP) /* Make the rest nice. */ expressionP->X_add_symbol = NULL; expressionP->X_op_symbol = NULL; - /* Put back the delimiting char. */ - *input_line_pointer = c; return true; } - else - { - /* Reset the line as if we had not done anything. */ - *input_line_pointer = c; - input_line_pointer = start; - return false; - } + + /* Reset the line as if we had not done anything. */ + input_line_pointer = start; + return false; } /* This function is called for each symbol seen in an expression. It |