Merge lp:~ramana/gcc-linaro/fix-lp-744754-45 into lp:gcc-linaro/4.5

Proposed by Ramana Radhakrishnan
Status: Merged
Approved by: Ulrich Weigand
Approved revision: no longer in the source branch.
Merged at revision: 99519
Proposed branch: lp:~ramana/gcc-linaro/fix-lp-744754-45
Merge into: lp:gcc-linaro/4.5
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-45
Reviewer Review Type Date Requested Status
Ulrich Weigand (community) Approve
Review via email: mp+66274@code.launchpad.net

Description of the change

For testing similar to the other 4.6 based branch for this issue.

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 r99519 and queued it for build.

The snapshot is available at:
 http://ex.seabright.co.nz/snapshots/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45.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.5+bzr99519~ramana~fix-lp-744754-45
cbuild-ancestor: lp:gcc-linaro+bzr99518
cbuild-state: check

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

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

The build results are available at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45/logs/i686-lucid-cbuild140-scorpius-i686r1

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

The full testsuite results are at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45/logs/i686-lucid-cbuild140-scorpius-i686r1/gcc-testsuite.txt

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

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

cbuild successfully built this on armv7l-natty-cbuild140-ursa1-cortexa9r1.

The build results are available at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45/logs/armv7l-natty-cbuild140-ursa1-cortexa9r1

The test suite results changed compared to the branch point lp:gcc-linaro+bzr99518:
 -PASS: gcc.misc-tests/linkage.c link
 +UNSUPPORTED: gcc.misc-tests/linkage.c native compile failed

The full testsuite results are at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45/logs/armv7l-natty-cbuild140-ursa1-cortexa9r1/gcc-testsuite.txt

cbuild-checked: armv7l-natty-cbuild140-ursa1-cortexa9r1

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

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

The build results are available at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45/logs/x86_64-natty-cbuild144-oort3-x86_64r1

The test suite results changed compared to the branch point lp:gcc-linaro+bzr99518:
 -PASS: gcc.misc-tests/linkage.c link
 +UNSUPPORTED: gcc.misc-tests/linkage.c native compile failed

The full testsuite results are at:
 http://ex.seabright.co.nz/build/gcc-linaro-4.5+bzr99519~ramana~fix-lp-744754-45/logs/x86_64-natty-cbuild144-oort3-x86_64r1/gcc-testsuite.txt

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

Revision history for this message
Michael Hope (michaelh1) wrote :

Note the difference above is due to the host going from maverick to natty.

Revision history for this message
Michael Hope (michaelh1) wrote :

Note the difference above is due to the host going from maverick to natty.

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-14 10:36:23 +0000
3+++ ChangeLog.linaro 2011-06-29 10:53:52 +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-14 Andrew Stubbs <ams@codesourcery.com>
15
16 gcc/
17
18=== modified file 'gcc/config/arm/arm.c'
19--- gcc/config/arm/arm.c 2011-05-11 14:47:14 +0000
20+++ gcc/config/arm/arm.c 2011-06-29 10:53:52 +0000
21@@ -9322,6 +9322,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