re PR tree-optimization/85497 ([graphite] ICE in set_codegen_error, at graphite-isl-ast-to-gimple.c:206)

2019-02-01  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/85497
	* gcc.dg/graphite/pr85497.c: New testcase.

From-SVN: r268447
This commit is contained in:
Richard Biener 2019-02-01 09:17:14 +00:00 committed by Richard Biener
parent ff9d5a2a4a
commit 3c54b7d606
2 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2019-02-01 Richard Biener <rguenther@suse.de>
PR tree-optimization/85497
* gcc.dg/graphite/pr85497.c: New testcase.
2019-02-01 Richard Biener <rguenther@suse.de>
PR testsuite/87451

View File

@ -0,0 +1,18 @@
/* { dg-do compile } */
/* { dg-options "-O1 -floop-parallelize-all -fno-tree-loop-im --param scev-max-expr-size=1" } */
int au;
void
a8 (int k7)
{
int xo;
for (xo = 0; xo < 2; ++xo)
{
int dd;
for (dd = 0; dd < 2; ++dd)
au = !!k7 ? xo : 0;
}
}