This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Linaro gcc mirror + linaro-local branches".
The branch, gcc-4_9-branch has been updated via cbb69fdd9a8af32962ffa8d5921666c7c5685f02 (commit) from b4d560bc11ab56306d202a3f7acc2aeab4739124 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit cbb69fdd9a8af32962ffa8d5921666c7c5685f02 Author: jamborm jamborm@138bc75d-0d04-0410-961f-82ee72b054a4 Date: Wed Jul 8 11:24:38 2015 +0000
Make gcc/testsuite/g++.dg/ipa/pr61160-3.C main return zero.
2015-07-08 Martin Jambor mjambor@suse.cz
PR ipa/61820 Backport from mainline r212915 2014-07-22 Martin Jambor mjambor@suse.cz
PR ipa/61160 * g++.dg/ipa/pr61160-3.C (main): Return zero.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_9-branch@225543 138bc75d-0d04-0410-961f-82ee72b054a4
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index dfeaa5e..2b37667 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2015-07-08 Martin Jambor mjambor@suse.cz + + PR ipa/61820 + Backport from mainline r212915 + 2014-07-22 Martin Jambor mjambor@suse.cz + + PR ipa/61160 + * g++.dg/ipa/pr61160-3.C (main): Return zero. + 2015-07-05 Bill Schmidt wschmidt@linux.vnet.ibm.com
Backport from mainline r224725 diff --git a/gcc/testsuite/g++.dg/ipa/pr61160-3.C b/gcc/testsuite/g++.dg/ipa/pr61160-3.C index 8184ec2..d7a3afb 100644 --- a/gcc/testsuite/g++.dg/ipa/pr61160-3.C +++ b/gcc/testsuite/g++.dg/ipa/pr61160-3.C @@ -33,5 +33,6 @@ void *test (MMixin & anExample) int main () { CExample c; - return (test (c) != &c); + test (c); + return 0; }
-----------------------------------------------------------------------
Summary of changes: gcc/testsuite/ChangeLog | 9 +++++++++ gcc/testsuite/g++.dg/ipa/pr61160-3.C | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-)
hooks/post-receive