re PR ipa/61160 (wrong code with -O3 (or ICE: verify_cgraph_node failed: edge points to wrong declaration))

2014-07-22  Martin Jambor  <mjambor@suse.cz>

	PR ipa/61160
	* g++.dg/ipa/pr61160-3.C (main): Return zero.

From-SVN: r212915
This commit is contained in:
Martin Jambor 2014-07-22 18:20:25 +02:00 committed by Martin Jambor
parent d8a7c72cba
commit a3dfa4984a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-07-22 Martin Jambor <mjambor@suse.cz>
PR ipa/61160
* pr61160-3.C (main): Return zero.
2014-07-22 Alan Lawrence <alan.lawrence@arm.com>
* gcc.target/arm/simd/vexts64_1.c: Remove #include, inline test body.

View File

@ -33,5 +33,6 @@ void *test (MMixin & anExample)
int main ()
{
CExample c;
return (test (c) != &c);
test (c);
return 0;
}