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-r106766.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-r106766.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106766.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-r106766.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106766.patch deleted file mode 100644 index 15046a766e..0000000000 --- a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106766.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | 2011-07-03 Ira Rosen <ira.rosen@linaro.org> | ||
2 | |||
3 | Backport from FSF: | ||
4 | 2011-06-12 Ira Rosen <ira.rosen@linaro.org> | ||
5 | |||
6 | gcc/ | ||
7 | * tree-vect-data-refs.c (vect_peeling_hash_get_most_frequent): | ||
8 | Take number of iterations to peel into account for equally frequent | ||
9 | misalignment values. | ||
10 | |||
11 | === modified file 'gcc/tree-vect-data-refs.c' | ||
12 | --- old/gcc/tree-vect-data-refs.c 2011-06-02 12:12:00 +0000 | ||
13 | +++ new/gcc/tree-vect-data-refs.c 2011-06-29 11:20:24 +0000 | ||
14 | @@ -1256,7 +1256,9 @@ | ||
15 | vect_peel_info elem = (vect_peel_info) *slot; | ||
16 | vect_peel_extended_info max = (vect_peel_extended_info) data; | ||
17 | |||
18 | - if (elem->count > max->peel_info.count) | ||
19 | + if (elem->count > max->peel_info.count | ||
20 | + || (elem->count == max->peel_info.count | ||
21 | + && max->peel_info.npeel > elem->npeel)) | ||
22 | { | ||
23 | max->peel_info.npeel = elem->npeel; | ||
24 | max->peel_info.count = elem->count; | ||
25 | |||