[PATCH] gas: delete unnecessary skip of whitespace
Gregory Fong
gregory.0xf0@gmail.com
Thu Oct 17 22:27:00 GMT 2013
More information about the Binutils mailing list
Thu Oct 17 22:27:00 GMT 2013
- Previous message (by thread): Differing archives on http://ftp.gnu.org/gnu/binutils/ and ftp://sourceware.org/pub/binutils/releases/
- Next message (by thread): [PATCH] gas: delete unnecessary skip of whitespace
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Was going through fixes for PR14887 and PR14987 and noticed that there's a whitespace skip that was made unnecessary by https://sourceware.org/ml/binutils-cvs/2013-06/msg00107.html . This is pretty minor and could probably just be worked into a larger cleanup changeset if there are plans for that in the near future. Checked for regression by running the testsuite. Regards, Gregory gas/ * config/tc-arm.c (parse_address_main) Delete skip of whitespace here as it is no longer needed. --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -5175,9 +5175,6 @@ parse_address_main (char **str, int i, int group_relocations, return PARSE_OPERAND_SUCCESS; } - /* PR gas/14887: Allow for whitespace after the opening bracket. */ - skip_whitespace (p); - if ((reg = arm_reg_parse (&p, REG_TYPE_RN)) == FAIL) { inst.error = _(reg_expected_msgs[REG_TYPE_RN]);
- Previous message (by thread): Differing archives on http://ftp.gnu.org/gnu/binutils/ and ftp://sourceware.org/pub/binutils/releases/
- Next message (by thread): [PATCH] gas: delete unnecessary skip of whitespace
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list