diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-06-28 12:19:53 -0700 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-07-09 18:40:21 +0200 |
commit | 6b278fbb02d818b54b5a9fa2716fc49e896b72a8 (patch) | |
tree | 833783fb738ff7abf3d0e3029c9a468e73b06e28 /toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106865.patch | |
parent | 680af24d1ff95533db610176e6b01fcc9dcf6699 (diff) | |
download | meta-openembedded-6b278fbb02d818b54b5a9fa2716fc49e896b72a8.tar.gz |
gcc-4.6: Migrate recipes from OE-Core
Remove linaro patches. If one needs to use linaro
modified gcc they should use meta-linaro
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106865.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106865.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106865.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106865.patch deleted file mode 100644 index 5b0735b004..0000000000 --- a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106865.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | 2012-01-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org> | ||
2 | |||
3 | Backport from mainline | ||
4 | 2012-01-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org> | ||
5 | |||
6 | PR target/51819 | ||
7 | * config/arm/arm.c (arm_print_operand): Correct output of alignment | ||
8 | hints for neon loads and stores. | ||
9 | |||
10 | === modified file 'gcc/config/arm/arm.c' | ||
11 | --- old/gcc/config/arm/arm.c 2012-01-23 00:06:27 +0000 | ||
12 | +++ new/gcc/config/arm/arm.c 2012-01-23 18:54:21 +0000 | ||
13 | @@ -17463,9 +17463,9 @@ | ||
14 | /* Only certain alignment specifiers are supported by the hardware. */ | ||
15 | if (memsize == 16 && (align % 32) == 0) | ||
16 | align_bits = 256; | ||
17 | - else if ((memsize == 8 || memsize == 16) && (align % 16) == 0) | ||
18 | + else if (memsize == 16 && (align % 16) == 0) | ||
19 | align_bits = 128; | ||
20 | - else if ((align % 8) == 0) | ||
21 | + else if (memsize >= 8 && (align % 8) == 0) | ||
22 | align_bits = 64; | ||
23 | else | ||
24 | align_bits = 0; | ||
25 | |||