diff options
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/loop-unswitch.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9885c7746d7..04b9cde5759 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2004-05-13 Andrew Pinski <pinskia@physics.uc.edu> + * loop-unswitch.c (unswitch_single_loop): Free bbs at + the end. + * final.c (shorten_branches): Free uid_shuid before reallocating it. diff --git a/gcc/loop-unswitch.c b/gcc/loop-unswitch.c index a056841ef8a..bedf5f8ce7c 100644 --- a/gcc/loop-unswitch.c +++ b/gcc/loop-unswitch.c @@ -379,6 +379,8 @@ unswitch_single_loop (struct loops *loops, struct loop *loop, free_EXPR_LIST_node (conds); if (rcond) free_EXPR_LIST_node (rconds); + + free (bbs); } /* Unswitch a LOOP w.r. to given basic block UNSWITCH_ON. We only support |