re PR tree-optimization/77283 (Revision 238005 disables loop unrolling)

2017-01-13  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/77283
	* gcc.dg/tree-ssa/split-path-9.c: Fix.

From-SVN: r244394
This commit is contained in:
Richard Biener 2017-01-13 08:47:57 +00:00 committed by Richard Biener
parent 2532991330
commit 3c3b9090f8
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2017-01-13 Richard Biener <rguenther@suse.de>
PR tree-optimization/77283
* gcc.dg/tree-ssa/split-path-9.c: Fix.
2017-01-13 Richard Biener <rguenther@suse.de>
* gcc.dg/gimplefe-22.c: New testcase.

View File

@ -9,8 +9,8 @@ foo(unsigned int size, unsigned int *state)
for(i = 0; i < size; i++)
{
if(*state & 1)
*state ^= 1;
if(state[i] & 1)
state[i] ^= 1;
}
}