OSDN Git Service

* loop-invariant.c (move_loop_invariants): Add missing hunk from
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 16 Dec 2005 15:57:15 +0000 (15:57 +0000)
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 16 Dec 2005 15:57:15 +0000 (15:57 +0000)
        the previous patch, to nullify df.

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

gcc/ChangeLog
gcc/loop-invariant.c

index a73bcb4..fe03137 100644 (file)
@@ -1,5 +1,10 @@
 2005-12-16  Steven Bosscher  <stevenb@suse.de>
 
+       * loop-invariant.c (move_loop_invariants): Add missing hunk from
+       the previous patch, to nullify df.
+
+2005-12-16  Steven Bosscher  <stevenb@suse.de>
+
        * reorg.c (mostly_true_jump): Clean up code depending on
        LABEL_OUTSIDE_LOOP_P and loop notes.  Remove code doing
        poor man's branch prediction, instead rely on REG_BR_PROB
index 8358f01..687a9ec 100644 (file)
@@ -939,6 +939,7 @@ move_loop_invariants (struct loops *loops)
       free_loop_data (loops->parray[i]);
 
   df_finish (df);
+  df = NULL;
 
 #ifdef ENABLE_CHECKING
   verify_flow_info ();