OSDN Git Service

* tree-ssa-loop.c (pass_loop_init): Add TODO_dump_func.
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 18 Aug 2004 20:03:54 +0000 (20:03 +0000)
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 18 Aug 2004 20:03:54 +0000 (20:03 +0000)
(pass_loop_done): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86205 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 9a81782..d67d216 100644 (file)
@@ -1,3 +1,8 @@
+2004-08-18  Diego Novillo  <dnovillo@redhat.com>
+
+       * tree-ssa-loop.c (pass_loop_init): Add TODO_dump_func.
+       (pass_loop_done): Likewise.
+
 2004-08-18  Andrew Pinski  <apinski@apple.com>
 
        * config/rs6000/darwin.md: Delete the altivec patterns which are 
index 99dbc71..666dab6 100644 (file)
@@ -117,7 +117,7 @@ struct tree_opt_pass pass_loop_init =
   0,                                   /* properties_provided */
   0,                                   /* properties_destroyed */
   0,                                   /* todo_flags_start */
-  0                                    /* todo_flags_finish */
+  TODO_dump_func                       /* todo_flags_finish */
 };
 
 /* Loop invariant motion pass.  */
@@ -220,6 +220,6 @@ struct tree_opt_pass pass_loop_done =
   0,                                   /* properties_provided */
   0,                                   /* properties_destroyed */
   0,                                   /* todo_flags_start */
-  0                                    /* todo_flags_finish */
+  TODO_dump_func                       /* todo_flags_finish */
 };