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-r106789.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-r106789.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106789.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106789.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106789.patch deleted file mode 100644 index a384ce7a18..0000000000 --- a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/linaro/gcc-4.6-linaro-r106789.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | 2011-08-15 Richard Sandiford <richard.sandiford@linaro.org> | ||
2 | |||
3 | gcc/ | ||
4 | * config/rs6000/rs6000.c (paired_expand_vector_init): Don't create | ||
5 | CONST_VECTORs with symbolic elements. | ||
6 | (rs6000_expand_vector_init): Likewise. | ||
7 | |||
8 | === modified file 'gcc/config/rs6000/rs6000.c' | ||
9 | --- old/gcc/config/rs6000/rs6000.c 2011-07-27 18:17:15 +0000 | ||
10 | +++ new/gcc/config/rs6000/rs6000.c 2011-08-16 08:59:36 +0000 | ||
11 | @@ -5134,7 +5134,9 @@ | ||
12 | for (i = 0; i < n_elts; ++i) | ||
13 | { | ||
14 | x = XVECEXP (vals, 0, i); | ||
15 | - if (!CONSTANT_P (x)) | ||
16 | + if (!(CONST_INT_P (x) | ||
17 | + || GET_CODE (x) == CONST_DOUBLE | ||
18 | + || GET_CODE (x) == CONST_FIXED)) | ||
19 | ++n_var; | ||
20 | } | ||
21 | if (n_var == 0) | ||
22 | @@ -5286,7 +5288,9 @@ | ||
23 | for (i = 0; i < n_elts; ++i) | ||
24 | { | ||
25 | x = XVECEXP (vals, 0, i); | ||
26 | - if (!CONSTANT_P (x)) | ||
27 | + if (!(CONST_INT_P (x) | ||
28 | + || GET_CODE (x) == CONST_DOUBLE | ||
29 | + || GET_CODE (x) == CONST_FIXED)) | ||
30 | ++n_var, one_var = i; | ||
31 | else if (x != CONST0_RTX (inner_mode)) | ||
32 | all_const_zero = false; | ||
33 | |||