]> gcc.gnu.org Git - gcc.git/commitdiff
* et-forest.c: Replace et_occurences with et_occurrences.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 24 Feb 2004 03:46:42 +0000 (03:46 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 24 Feb 2004 03:46:42 +0000 (03:46 +0000)
From-SVN: r78351

gcc/ChangeLog
gcc/et-forest.c

index 7fba48e5aa1ffdec53067bd7c3ed858972ae6e8a..c9a8301095d9842d4619f149c1674f42c324011a 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * et-forest.c: Replace et_occurences with et_occurrences.
+
 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
 
        * cfgloop.h, loop-iv.c, loop-unswitch.c: Replace iv_analyse
 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
 
        * cfgloop.h, loop-iv.c, loop-unswitch.c: Replace iv_analyse
index 77194c630686d54e60b7cbbd3b71f2d014ce0de6..e65ccda60058869d7f24ce1e369399355f0d315f 100644 (file)
@@ -56,7 +56,7 @@ struct et_occ
 };
 
 static alloc_pool et_nodes;
 };
 
 static alloc_pool et_nodes;
-static alloc_pool et_occurences;
+static alloc_pool et_occurrences;
 
 /* Changes depth of OCC to D.  */
 
 
 /* Changes depth of OCC to D.  */
 
@@ -459,9 +459,9 @@ et_new_occ (struct et_node *node)
 {
   struct et_occ *nw;
   
 {
   struct et_occ *nw;
   
-  if (!et_occurences)
-    et_occurences = create_alloc_pool ("et_occ pool", sizeof (struct et_occ), 300);
-  nw = pool_alloc (et_occurences);
+  if (!et_occurrences)
+    et_occurrences = create_alloc_pool ("et_occ pool", sizeof (struct et_occ), 300);
+  nw = pool_alloc (et_occurrences);
 
   nw->of = node;
   nw->parent = NULL;
 
   nw->of = node;
   nw->parent = NULL;
@@ -509,7 +509,7 @@ et_free_tree (struct et_node *t)
   if (t->father)
     et_split (t);
 
   if (t->father)
     et_split (t);
 
-  pool_free (et_occurences, t->rightmost_occ);
+  pool_free (et_occurrences, t->rightmost_occ);
   pool_free (et_nodes, t);
 }
 
   pool_free (et_nodes, t);
 }
 
@@ -602,7 +602,7 @@ et_split (struct et_node *t)
   rmost->depth = 0;
   rmost->min = 0;
 
   rmost->depth = 0;
   rmost->min = 0;
 
-  pool_free (et_occurences, p_occ);
+  pool_free (et_occurrences, p_occ);
 
   /* Update the tree.  */
   if (father->son == t)
 
   /* Update the tree.  */
   if (father->son == t)
This page took 0.078088 seconds and 5 git commands to generate.