Merge lp:~ramana/gcc-linaro/fix-lp-744754-46 into lp:gcc-linaro/4.6

Proposed by Ramana Radhakrishnan
Status: Merged
Approved by: Ulrich Weigand
Approved revision: no longer in the source branch.
Merged at revision: 106764
Proposed branch: lp:~ramana/gcc-linaro/fix-lp-744754-46
Merge into: lp:gcc-linaro/4.6
Diff against target: 31 lines (+14/-0)
2 files modified
ChangeLog.linaro (+9/-0)
gcc/config/arm/arm.c (+5/-0)
To merge this branch: bzr merge lp:~ramana/gcc-linaro/fix-lp-744754-46
Reviewer Review Type Date Requested Status
Ulrich Weigand (community) Approve
Review via email: mp+66263@code.launchpad.net

Description of the change

This is essentially a re-merge of https://code.launchpad.net/~cltang/gcc-linaro/lp-744754-neon-ice/+merge/58645 for the 4.6 branch.

Would like this tested once and then merged in.

cheers
Ramana

To post a comment you must log in.
Revision history for this message
Linaro Toolchain Builder (cbuild) wrote :

cbuild has taken a snapshot of this branch at r106764 and queued it for build.

The snapshot is available at:
 http://ex.seabright.co.nz/snapshots/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46.tar.xdelta3.xz

and will be built on the following builders:
 a9-builder armv5-builder i686 x86_64

You can track the build queue at:
 http://ex.seabright.co.nz/helpers/scheduler

cbuild-snapshot: gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46
cbuild-ancestor: lp:gcc-linaro/4.6+bzr106763
cbuild-state: check

Revision history for this message
Linaro Toolchain Builder (cbuild) wrote :

cbuild successfully built this on i686-lucid-cbuild142-scorpius-i686r1.

The build results are available at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46/logs/i686-lucid-cbuild142-scorpius-i686r1

The test suite results were unchanged compared to the branch point lp:gcc-linaro/4.6+bzr106763.

The full testsuite results are at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46/logs/i686-lucid-cbuild142-scorpius-i686r1/gcc-testsuite.txt

cbuild-checked: i686-lucid-cbuild142-scorpius-i686r1

Revision history for this message
Linaro Toolchain Builder (cbuild) wrote :

cbuild successfully built this on x86_64-natty-cbuild144-oort1-x86_64r1.

The build results are available at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46/logs/x86_64-natty-cbuild144-oort1-x86_64r1

The test suite results were unchanged compared to the branch point lp:gcc-linaro/4.6+bzr106763.

The full testsuite results are at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46/logs/x86_64-natty-cbuild144-oort1-x86_64r1/gcc-testsuite.txt

cbuild-checked: x86_64-natty-cbuild144-oort1-x86_64r1

Revision history for this message
Linaro Toolchain Builder (cbuild) wrote :

cbuild successfully built this on armv7l-natty-cbuild142-ursa3-cortexa9r1.

The build results are available at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46/logs/armv7l-natty-cbuild142-ursa3-cortexa9r1

The test suite results were unchanged compared to the branch point lp:gcc-linaro/4.6+bzr106763.

The full testsuite results are at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.6+bzr106764~ramana~fix-lp-744754-46/logs/armv7l-natty-cbuild142-ursa3-cortexa9r1/gcc-testsuite.txt

cbuild-checked: armv7l-natty-cbuild142-ursa3-cortexa9r1

Revision history for this message
Ulrich Weigand (uweigand) wrote :

This is OK.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ChangeLog.linaro'
2--- ChangeLog.linaro 2011-06-28 12:02:27 +0000
3+++ ChangeLog.linaro 2011-06-29 09:23:34 +0000
4@@ -1,3 +1,12 @@
5+2011-06-29 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
6+
7+ Backport from mainline.
8+ LP 744754
9+ 2011-04-17 Chung-Lin Tang <cltang@codesourcery.com>
10+
11+ * config/arm/arm.c (neon_struct_mem_operand):
12+ Support POST_INC/PRE_DEC memory operands.
13+
14 2011-06-28 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
15
16 Backport from mainline.
17
18=== modified file 'gcc/config/arm/arm.c'
19--- gcc/config/arm/arm.c 2011-06-27 22:14:07 +0000
20+++ gcc/config/arm/arm.c 2011-06-29 09:23:34 +0000
21@@ -9357,6 +9357,11 @@
22 if (GET_CODE (ind) == REG)
23 return arm_address_register_rtx_p (ind, 0);
24
25+ /* vldm/vstm allows POST_INC (ia) and PRE_DEC (db). */
26+ if (GET_CODE (ind) == POST_INC
27+ || GET_CODE (ind) == PRE_DEC)
28+ return arm_address_register_rtx_p (XEXP (ind, 0), 0);
29+
30 return FALSE;
31 }
32

Subscribers

People subscribed via source and target branches