binutils: Upgrade 2.23.1 -> 2.23.2

(From OE-Core rev: 202f46b139ab20079e97cdeb147d59e23bcdfe01)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj
2013-04-25 20:38:23 -07:00
committed by Richard Purdie
parent 4bf8253af7
commit edcae40bf6
35 changed files with 2 additions and 900 deletions

View File

@@ -0,0 +1,20 @@
Upstream-Status: Pending
binutils build fails on Fedora18+ due to over array bounds issue:
binutils-2.23.1/opcodes/rl78-dis.c:230:13: error: array subscript is above array bounds [-Werror=array-bounds]
if (oper->use_es && indirect_type (oper->type))
^
Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
--- binutils-2.23.1/opcodes/rl78-dis.c.orig 2013-03-12 22:17:47.664361066 -0500
+++ binutils-2.23.1/opcodes/rl78-dis.c 2013-03-12 23:39:51.383460914 -0500
@@ -221,7 +221,7 @@
case '0':
case '1':
- oper = opcode.op + *s - '0';
+ oper = &opcode.op[*s - '0'];
if (do_bang)
PC ('!');