Commit 5e79b147 by Richard Biener Committed by Richard Biener

re PR tree-optimization/91162 (ICE: tree check: expected class 'type', have…

re PR tree-optimization/91162 (ICE: tree check: expected class 'type', have 'exceptional' (error_mark) in useless_type_conversion_p, at gimple-expr.c:86 (error: invalid 'PHI' argument))

2019-07-15  Richard Biener  <rguenther@suse.de>

	PR middle-end/91162
	* tree-cfg.c (move_block_to_fn): When releasing a virtual PHI
	node make sure to replace all uses with something valid.

	* gcc.dg/autopar/pr91162.c: New testcase.

From-SVN: r273492
parent 6c2833e7
2019-07-15 Richard Biener <rguenther@suse.de>
PR middle-end/91162
* tree-cfg.c (move_block_to_fn): When releasing a virtual PHI
node make sure to replace all uses with something valid.
2019-07-15 Kewen Lin <linkw@gcc.gnu.org> 2019-07-15 Kewen Lin <linkw@gcc.gnu.org>
PR tree-optimization/88497 PR tree-optimization/88497
......
2019-07-15 Richard Biener <rguenther@suse.de>
PR middle-end/91162
* gcc.dg/autopar/pr91162.c: New testcase.
2019-07-15 Kewen Lin <linkw@gcc.gnu.org> 2019-07-15 Kewen Lin <linkw@gcc.gnu.org>
PR tree-optimization/88497 PR tree-optimization/88497
......
/* { dg-do compile } */
/* { dg-options "-O -ftree-parallelize-loops=2 -fno-tree-dominator-opts --param parloops-min-per-thread=30" } */
void
zf (__int128 ct)
{
__int128 *rk = &ct;
if (0)
{
int jj;
t9:
for (jj = 0; jj < 60; ++jj)
{
}
__builtin_unreachable ();
}
while (*rk < 1)
++*rk;
goto t9;
}
...@@ -7088,7 +7088,14 @@ move_block_to_fn (struct function *dest_cfun, basic_block bb, ...@@ -7088,7 +7088,14 @@ move_block_to_fn (struct function *dest_cfun, basic_block bb,
if (virtual_operand_p (op)) if (virtual_operand_p (op))
{ {
/* Remove the phi nodes for virtual operands (alias analysis will be /* Remove the phi nodes for virtual operands (alias analysis will be
run for the new function, anyway). */ run for the new function, anyway). But replace all uses that
might be outside of the region we move. */
use_operand_p use_p;
imm_use_iterator iter;
gimple *use_stmt;
FOR_EACH_IMM_USE_STMT (use_stmt, iter, op)
FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
SET_USE (use_p, SSA_NAME_VAR (op));
remove_phi_node (&psi, true); remove_phi_node (&psi, true);
continue; continue;
} }
......
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