tc-xtensa.c: fixup xg_reverse_shift_count typo
gas/ChangeLog: 2016-09-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * config/tc-xtensa.c (xg_reverse_shift_count): Pass cnt_arg instead of cnt_argp to concat.
This commit is contained in:
parent
c5da193232
commit
78fb7e37eb
@ -1,3 +1,8 @@
|
||||
2016-09-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
|
||||
|
||||
* config/tc-xtensa.c (xg_reverse_shift_count): Pass cnt_arg instead of
|
||||
cnt_argp to concat.
|
||||
|
||||
2016-09-26 Vlad Zakharov <vzakhar@synopsys.com>
|
||||
|
||||
* Makefile.in: Regenerate.
|
||||
|
@ -2228,7 +2228,7 @@ xg_reverse_shift_count (char **cnt_argp)
|
||||
cnt_arg = *cnt_argp;
|
||||
|
||||
/* replace the argument with "31-(argument)" */
|
||||
new_arg = concat ("31-(", cnt_argp, ")", (char *) NULL);
|
||||
new_arg = concat ("31-(", cnt_arg, ")", (char *) NULL);
|
||||
|
||||
free (cnt_arg);
|
||||
*cnt_argp = new_arg;
|
||||
|
Loading…
Reference in New Issue
Block a user