]> gcc.gnu.org Git - gcc.git/commitdiff
tree-ssa-dom.c (tree_ssa_dominator_optimize): Initialize OPT_STATS to 0.
authorDiego Novillo <dnovillo@redhat.com>
Mon, 4 Oct 2004 13:19:20 +0000 (13:19 +0000)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Mon, 4 Oct 2004 13:19:20 +0000 (09:19 -0400)
* tree-ssa-dom.c (tree_ssa_dominator_optimize):
Initialize OPT_STATS to 0.

From-SVN: r88484

gcc/ChangeLog
gcc/tree-ssa-dom.c

index 663896f9bc508e0e04db068314dd76b7242b257c..780e06dbd73f36a2a31aa18276e4d1469385f393 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-04  Diego Novillo  <dnovillo@redhat.com>
+
+       * tree-ssa-dom.c (tree_ssa_dominator_optimize):
+       Initialize OPT_STATS to 0.
+
 2004-10-04  Kazu Hirata  <kazu@cs.umass.edu>
 
        * tree-data-ref.c: Fix comment typos.
index 7e522d93736fa2ba479cef6943b14e1dee775b0d..5d545bd2a26c4d5a2cf7b115abe486eddb4608f7 100644 (file)
@@ -294,6 +294,8 @@ tree_ssa_dominator_optimize (void)
   struct dom_walk_data walk_data;
   unsigned int i;
 
+  memset (&opt_stats, 0, sizeof (opt_stats));
+
   for (i = 0; i < num_referenced_vars; i++)
     var_ann (referenced_var (i))->current_def = NULL;
 
This page took 0.067497 seconds and 5 git commands to generate.