memcached: bump version to 1.4.36
[buildroot-gz.git] / package / binutils / 2.27 / 0130-tc-xtensa.c-fixup-xg_reverse_shift_count-typo.patch
blob79736078847cf070023a005ff0c52486f2ca4fed
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
6 gas/ChangeLog:
8 2016-09-26 Trevor Saunders <tbsaunde+binutils@tbsaunde.org>
10 * config/tc-xtensa.c (xg_reverse_shift_count): Pass cnt_arg instead of
11 cnt_argp to concat.
13 Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
14 ---
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)
23 cnt_arg = *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);
29 free (cnt_arg);
30 *cnt_argp = new_arg;
31 --
32 2.1.4