diff options
| author | Khem Raj <raj.khem@gmail.com> | 2014-02-01 01:00:15 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-02 22:37:40 +0000 |
| commit | d4b11e8f160350e4530e174d2c93e06fe90e48c6 (patch) | |
| tree | 7e253c46b998de7a55ad6e8c22dfcc12733ab671 /meta/recipes-devtools/binutils/binutils-2.23.2/binutils-fix-over-array-bounds-issue.patch | |
| parent | a42f84682fb0522beacfb445ccfd482fe536d629 (diff) | |
| download | poky-d4b11e8f160350e4530e174d2c93e06fe90e48c6.tar.gz | |
binutils: Upgrade to 2.24
This builds and runs images for all qemu machines
(From OE-Core rev: 015eca84f1b0f25868b47d2480bb60cea698f70e)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils-2.23.2/binutils-fix-over-array-bounds-issue.patch')
| -rw-r--r-- | meta/recipes-devtools/binutils/binutils-2.23.2/binutils-fix-over-array-bounds-issue.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/recipes-devtools/binutils/binutils-2.23.2/binutils-fix-over-array-bounds-issue.patch b/meta/recipes-devtools/binutils/binutils-2.23.2/binutils-fix-over-array-bounds-issue.patch deleted file mode 100644 index aacbfef7d6..0000000000 --- a/meta/recipes-devtools/binutils/binutils-2.23.2/binutils-fix-over-array-bounds-issue.patch +++ /dev/null | |||
| @@ -1,20 +0,0 @@ | |||
| 1 | Upstream-Status: Pending | ||
| 2 | |||
| 3 | binutils build fails on Fedora18+ due to over array bounds issue: | ||
| 4 | binutils-2.23.1/opcodes/rl78-dis.c:230:13: error: array subscript is above array bounds [-Werror=array-bounds] | ||
| 5 | if (oper->use_es && indirect_type (oper->type)) | ||
| 6 | ^ | ||
| 7 | |||
| 8 | Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com> | ||
| 9 | |||
| 10 | --- binutils-2.23.1/opcodes/rl78-dis.c.orig 2013-03-12 22:17:47.664361066 -0500 | ||
| 11 | +++ binutils-2.23.1/opcodes/rl78-dis.c 2013-03-12 23:39:51.383460914 -0500 | ||
| 12 | @@ -221,7 +221,7 @@ | ||
| 13 | |||
| 14 | case '0': | ||
| 15 | case '1': | ||
| 16 | - oper = opcode.op + *s - '0'; | ||
| 17 | + oper = &opcode.op[*s - '0']; | ||
| 18 | if (do_bang) | ||
| 19 | PC ('!'); | ||
| 20 | |||
