re PR ipa/59610 (ICE in parm_preserved_before_stmt_p)

2014-01-08  Martin Jambor  <mjambor@suse.cz>

	PR ipa/59610
testsuite/
	* gcc.dg/ipa/pr59610.c: New test.

From-SVN: r206430
This commit is contained in:
Martin Jambor 2014-01-08 16:32:50 +01:00 committed by Martin Jambor
parent 76d3d479f3
commit 2a537fa74e
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2014-01-08 Martin Jambor <mjambor@suse.cz>
PR ipa/59610
* gcc.dg/ipa/pr59610.c: New test.
2014-01-08 Janus Weil <janus@gcc.gnu.org>
PR fortran/58182

View file

@ -0,0 +1,11 @@
/* { dg-do compile } */
/* { dg-options "-O2" } */
struct A { int a; };
extern void *y;
__attribute__((optimize (0))) void
foo (void *p, struct A x)
{
foo (y, x);
}