diff options
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 | |||