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
=== modified file 'ChangeLog.linaro'
--- ChangeLog.linaro 2011-06-14 10:36:23 +0000
+++ ChangeLog.linaro 2011-06-29 10:53:52 +0000
@@ -1,3 +1,12 @@
12011-06-29 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
2
3 Backport from mainline.
4 LP 744754
5 2011-04-17 Chung-Lin Tang <cltang@codesourcery.com>
6
7 * config/arm/arm.c (neon_struct_mem_operand):
8 Support POST_INC/PRE_DEC memory operands.
9
12011-06-14 Andrew Stubbs <ams@codesourcery.com>102011-06-14 Andrew Stubbs <ams@codesourcery.com>
211
3 gcc/12 gcc/
413
=== modified file 'gcc/config/arm/arm.c'
--- gcc/config/arm/arm.c 2011-05-11 14:47:14 +0000
+++ gcc/config/arm/arm.c 2011-06-29 10:53:52 +0000
@@ -9322,6 +9322,11 @@
9322 if (GET_CODE (ind) == REG)9322 if (GET_CODE (ind) == REG)
9323 return arm_address_register_rtx_p (ind, 0);9323 return arm_address_register_rtx_p (ind, 0);
93249324
9325 /* vldm/vstm allows POST_INC (ia) and PRE_DEC (db). */
9326 if (GET_CODE (ind) == POST_INC
9327 || GET_CODE (ind) == PRE_DEC)
9328 return arm_address_register_rtx_p (XEXP (ind, 0), 0);
9329
9325 return FALSE;9330 return FALSE;
9326}9331}
93279332

Subscribers

People subscribed via source and target branches