diff options
author | Khem Raj <raj.khem@gmail.com> | 2011-09-29 22:12:52 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-04 13:48:57 +0200 |
commit | b9b5306e551f26d76e9dc5fa6f10c2c095fe6e0f (patch) | |
tree | 3908112a2010485903e16f9f7fec5d0fec2a37fa /meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106798.patch | |
parent | 9f2e55480dc94e90ac09ca468cf2f0dacb54ae2d (diff) | |
download | meta-openembedded-b9b5306e551f26d76e9dc5fa6f10c2c095fe6e0f.tar.gz |
gcc-4.6: Bring in latest linaro patches
Adjust existing patches for latest FSF gcc-4_6-branch
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106798.patch')
-rw-r--r-- | meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106798.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106798.patch b/meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106798.patch new file mode 100644 index 0000000000..aa067b7113 --- /dev/null +++ b/meta-oe/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106798.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | 2011-09-05 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org> | ||
2 | |||
3 | gcc/ | ||
4 | |||
5 | 2011-08-12 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org> | ||
6 | |||
7 | PR target/48328 | ||
8 | * config/arm/arm.h (CASE_VECTOR_SHORTEN_MODE): Fix distance | ||
9 | for tbh instructions. | ||
10 | |||
11 | === modified file 'gcc/config/arm/arm.h' | ||
12 | --- old/gcc/config/arm/arm.h 2011-08-24 17:35:16 +0000 | ||
13 | +++ new/gcc/config/arm/arm.h 2011-09-05 14:32:11 +0000 | ||
14 | @@ -1961,7 +1961,7 @@ | ||
15 | : min >= -4096 && max < 4096 \ | ||
16 | ? (ADDR_DIFF_VEC_FLAGS (body).offset_unsigned = 0, HImode) \ | ||
17 | : SImode) \ | ||
18 | - : ((min < 0 || max >= 0x2000 || !TARGET_THUMB2) ? SImode \ | ||
19 | + : ((min < 0 || max >= 0x20000 || !TARGET_THUMB2) ? SImode \ | ||
20 | : (max >= 0x200) ? HImode \ | ||
21 | : QImode)) | ||
22 | |||
23 | |||