Commit 52e22c79 by Richard Biener Committed by Richard Biener

re PR tree-optimization/77362 ([graphite] ICE in sese_build_liveouts_use w/ -O2…

re PR tree-optimization/77362 ([graphite] ICE in sese_build_liveouts_use w/ -O2 -floop-nest-optimize)

2017-09-20  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/77362
	* gcc.dg/graphite/pr77362.c: New testcase.

From-SVN: r253006
parent 2a900079
2017-09-20 Richard Biener <rguenther@suse.de>
PR tree-optimization/77362
* gcc.dg/graphite/pr77362.c: New testcase.
2017-09-20 Richard Biener <rguenther@suse.de>
PR tree-optimization/82264
* gcc.dg/torture/pr82264.c: New testcase.
......
/* { dg-do compile } */
/* { dg-options "-O2 -floop-nest-optimize" } */
int mc[2];
int f2, sk;
short int hm;
void
zm (void)
{
int k1;
for (k1 = 0; k1 < 2; ++k1)
{
for (sk = 0; sk < 2; ++sk)
mc[sk] = hm = ++f2;
if (hm >= 0)
++hm;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment