Commit 773168c7 by Daniel Berlin Committed by Daniel Berlin

tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment.

2005-04-07  Daniel Berlin  <dberlin@dberlin.org>

	* tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment.

From-SVN: r97793
parent 01ae8930
2005-04-07 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment.
2005-04-07 Ian Lance Taylor <ian@airs.com> 2005-04-07 Ian Lance Taylor <ian@airs.com>
* config/iq2000/iq2000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Don't * config/iq2000/iq2000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Don't
......
...@@ -181,7 +181,7 @@ dse_optimize_stmt (struct dom_walk_data *walk_data, ...@@ -181,7 +181,7 @@ dse_optimize_stmt (struct dom_walk_data *walk_data,
get_stmt_operands (stmt); get_stmt_operands (stmt);
v_may_defs = V_MAY_DEF_OPS (ann); v_may_defs = V_MAY_DEF_OPS (ann);
/* If this statement has no virtual uses, then there is nothing /* If this statement has no virtual defs, then there is nothing
to do. */ to do. */
if (NUM_V_MAY_DEFS (v_may_defs) == 0) if (NUM_V_MAY_DEFS (v_may_defs) == 0)
return; return;
......
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