From: Jim Wilson Date: Thu, 11 Nov 1993 00:47:19 +0000 (-0800) Subject: (unroll_loop): Set global_const_equiv_map_size. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e39bf2d9fcc8ef97898e317e62bb831b0b2e412f;p=gcc.git (unroll_loop): Set global_const_equiv_map_size. From-SVN: r6062 --- diff --git a/gcc/unroll.c b/gcc/unroll.c index 631abcc93c0..e3ed103de28 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -753,6 +753,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, * sizeof (unsigned)); map->const_equiv_map_size = maxregnum; global_const_equiv_map = map->const_equiv_map; + global_const_equiv_map_size = maxregnum; init_reg_map (map, maxregnum); @@ -1013,6 +1014,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, map->const_equiv_map_size = new_maxregnum; global_const_equiv_map = map->const_equiv_map; + global_const_equiv_map_size = new_maxregnum; /* Search the list of bivs and givs to find ones which need to be remapped when split, and set their reg_map entry appropriately. */