tree-ssa.c (verify_ssa): SSA_OP_ALL_USES should be SSA_OP_ALL_USES | SSA_OP_ALL_KILLS for verification...

2004-11-22 Daniel Berlin  <dberlin@dberlin.org>

        * tree-ssa.c (verify_ssa): SSA_OP_ALL_USES should be
	SSA_OP_ALL_USES | SSA_OP_ALL_KILLS for verification purposes.

From-SVN: r91026
This commit is contained in:
Daniel Berlin 2004-11-22 20:28:01 +00:00 committed by Daniel Berlin
parent ad630bef66
commit 46b483a7c8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-22 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa.c (verify_ssa): SSA_OP_ALL_USES should be
SSA_OP_ALL_USES | SSA_OP_ALL_KILLS for verification purposes.
2004-11-22 David Edelsohn <edelsohn@gnu.org>
Fariborz Jahanian <fjahanian@apple.com>

View File

@ -655,7 +655,7 @@ verify_ssa (void)
goto err;
}
FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_ALL_USES)
FOR_EACH_SSA_TREE_OPERAND (op, stmt, iter, SSA_OP_ALL_USES | SSA_OP_ALL_KILLS)
{
if (verify_use (bb, definition_block[SSA_NAME_VERSION (op)],
op, stmt, false, !is_gimple_reg (op),