1 From 78fb7e37eb8bb08ae537d6c487996ff17c810332 Mon Sep 17 00:00:00 2001
2 From: Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
3 Date: Mon, 26 Sep 2016 12:42:11 -0400
4 Subject: [PATCH] tc-xtensa.c: fixup xg_reverse_shift_count typo
8 2016-09-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
10 * config/tc-xtensa.c (xg_reverse_shift_count): Pass cnt_arg instead of
13 Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
15 gas/config/tc-xtensa.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
18 diff --git a/gas/config/tc-xtensa.c b/gas/config/tc-xtensa.c
19 index d062044..ca261ae 100644
20 --- a/gas/config/tc-xtensa.c
21 +++ b/gas/config/tc-xtensa.c
22 @@ -2228,7 +2228,7 @@ xg_reverse_shift_count (char **cnt_argp)
25 /* replace the argument with "31-(argument)" */
26 - new_arg = concat ("31-(", cnt_argp, ")", (char *) NULL);
27 + new_arg = concat ("31-(", cnt_arg, ")", (char *) NULL);