From: Martin Jambor Date: Thu, 24 Jul 2014 13:03:22 +0000 (+0200) Subject: re PR ipa/61160 (wrong code with -O3 (or ICE: verify_cgraph_node failed: edge points... X-Git-Tag: releases/gcc-5.1.0~6116 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=472411664e6343a0b203e3b74740ff8a2686b625;p=thirdparty%2Fgcc.git re PR ipa/61160 (wrong code with -O3 (or ICE: verify_cgraph_node failed: edge points to wrong declaration)) 2014-07-24 Martin Jambor PR ipa/61160 * g++.dg/ipa/pr61160-2.C (main): Always return zero. From-SVN: r212987 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ae5dd749e755..42ac62f2c0aa 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2014-07-24 Martin Jambor + + PR ipa/61160 + * g++.dg/ipa/pr61160-2.C (main): Always return zero. + 2014-07-24 Richard Biener PR ipa/61823 diff --git a/gcc/testsuite/g++.dg/ipa/pr61160-2.C b/gcc/testsuite/g++.dg/ipa/pr61160-2.C index 1011bd1efab5..dd925d25c255 100644 --- a/gcc/testsuite/g++.dg/ipa/pr61160-2.C +++ b/gcc/testsuite/g++.dg/ipa/pr61160-2.C @@ -39,5 +39,6 @@ void *test (MMixin & anExample) int main () { CExample c; - return (test (c) != &c); + test (c); + return 0; }