diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-23 08:22:26 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-24 07:35:22 +0100 |
commit | ff0f815593c33f1a82ba4d1cbe41e6b987da1f47 (patch) | |
tree | 22b43fa2e84f25cc948df79f9e9de07e8ec57418 /toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99420.patch | |
parent | 6b22bd198a87b5f113971d8fcd0e7211cd143c7d (diff) |
toolchain-layer: move binutils and gcc from meta-oe into here
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Eric BĂ©nard <eric@eukrea.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99420.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99420.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99420.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99420.patch new file mode 100644 index 0000000..4e63a81 --- /dev/null +++ b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/linaro/gcc-4.5-linaro-r99420.patch @@ -0,0 +1,38 @@ +2010-10-18 Kazu Hirata <kazu@codesourcery.com> + + Issue #9720 + Backport from mainline: + gcc/ + 2010-10-07 Tejas Belagod <tejas.belagod@arm.com> + * config/arm/neon.md (neon_unpack<US>_<mode>): Add 'w' to + constraint, add register specifier in instruction template. + (neon_vec_pack_trunc_<mode>): Likewise. + (neon_vec_<US>mult_<mode>): Add register specifier to + instruction template. + +=== modified file 'gcc/config/arm/neon.md' +Index: gcc-4.5/gcc/config/arm/neon.md +=================================================================== +--- gcc-4.5.orig/gcc/config/arm/neon.md ++++ gcc-4.5/gcc/config/arm/neon.md +@@ -5682,9 +5682,9 @@ + ;; Vectorize for non-neon-quad case + (define_insn "neon_unpack<US>_<mode>" + [(set (match_operand:<V_widen> 0 "register_operand" "=w") +- (SE:<V_widen> (match_operand:VDI 1 "register_operand" "")))] ++ (SE:<V_widen> (match_operand:VDI 1 "register_operand" "w")))] + "TARGET_NEON" +- "vmovl.<US><V_sz_elem> %q0, %1" ++ "vmovl.<US><V_sz_elem> %q0, %P1" + [(set_attr "neon_type" "neon_shift_1")] + ) + +@@ -5721,7 +5721,7 @@ + (SE:<V_widen> + (match_operand:VDI 2 "register_operand" "w"))))] + "TARGET_NEON" +- "vmull.<US><V_sz_elem> %q0, %1, %2" ++ "vmull.<US><V_sz_elem> %q0, %P1, %P2" + [(set_attr "neon_type" "neon_shift_1")] + ) + |