Commit e39bf2d9 by Jim Wilson

(unroll_loop): Set global_const_equiv_map_size.

From-SVN: r6062
parent 2b145ea8
...@@ -753,6 +753,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, ...@@ -753,6 +753,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
* sizeof (unsigned)); * sizeof (unsigned));
map->const_equiv_map_size = maxregnum; map->const_equiv_map_size = maxregnum;
global_const_equiv_map = map->const_equiv_map; global_const_equiv_map = map->const_equiv_map;
global_const_equiv_map_size = maxregnum;
init_reg_map (map, maxregnum); init_reg_map (map, maxregnum);
...@@ -1013,6 +1014,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before, ...@@ -1013,6 +1014,7 @@ unroll_loop (loop_end, insn_count, loop_start, end_insert_before,
map->const_equiv_map_size = new_maxregnum; map->const_equiv_map_size = new_maxregnum;
global_const_equiv_map = map->const_equiv_map; 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 /* Search the list of bivs and givs to find ones which need to be remapped
when split, and set their reg_map entry appropriately. */ when split, and set their reg_map entry appropriately. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment