From: Daniel Berlin Date: Thu, 7 Apr 2005 18:38:03 +0000 (+0000) Subject: tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment. X-Git-Tag: misc/cutover-cvs2svn~4278 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=773168c7740e545071335d787979827a069081ff;p=thirdparty%2Fgcc.git tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment. 2005-04-07 Daniel Berlin * tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment. From-SVN: r97793 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fbc0582e0d6a..f36da18b2849 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-04-07 Daniel Berlin + + * tree-ssa-dse.c (dse_optimize_stmt): Fix incorrect comment. + 2005-04-07 Ian Lance Taylor * config/iq2000/iq2000.h (DONT_ACCESS_GBLS_AFTER_EPILOGUE): Don't diff --git a/gcc/tree-ssa-dse.c b/gcc/tree-ssa-dse.c index edea6382ce3c..d31c4344f049 100644 --- a/gcc/tree-ssa-dse.c +++ b/gcc/tree-ssa-dse.c @@ -181,7 +181,7 @@ dse_optimize_stmt (struct dom_walk_data *walk_data, get_stmt_operands (stmt); 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. */ if (NUM_V_MAY_DEFS (v_may_defs) == 0) return;