Commit 3ab76877 by Richard Biener Committed by Richard Biener

tree-ssa.texi (Immediate Uses): Fix FOR_EACH_IMM_USE_STMT example.

2019-10-29  Richard Biener  <rguenther@suse.de>

	* doc/tree-ssa.texi (Immediate Uses): Fix FOR_EACH_IMM_USE_STMT
	example.

From-SVN: r277568
parent 1d149b72
2019-10-29 Richard Biener <rguenther@suse.de>
* doc/tree-ssa.texi (Immediate Uses): Fix FOR_EACH_IMM_USE_STMT
example.
2019-10-29 Richard Sandiford <richard.sandiford@arm.com> 2019-10-29 Richard Sandiford <richard.sandiford@arm.com>
* tree-vect-stmts.c (vectorizable_condition): Get the reduction * tree-vect-stmts.c (vectorizable_condition): Get the reduction
...@@ -392,7 +392,7 @@ to do this : ...@@ -392,7 +392,7 @@ to do this :
FOR_EACH_IMM_USE_STMT (stmt, iterator, ssa_var) FOR_EACH_IMM_USE_STMT (stmt, iterator, ssa_var)
@{ @{
if (stmt == last_stmt) if (stmt == last_stmt)
BREAK_FROM_IMM_USE_STMT (iter); BREAK_FROM_IMM_USE_STMT (iterator);
FOR_EACH_IMM_USE_ON_STMT (imm_use_p, iterator) FOR_EACH_IMM_USE_ON_STMT (imm_use_p, iterator)
SET_USE (imm_use_p, ssa_var_2); SET_USE (imm_use_p, ssa_var_2);
......
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