Commit 60ec1aa4 by Andrew Pinski Committed by Andrew Pinski

mode-switching.c (optimize_mode_switching): Fix size allocated for bb_info[n_entities].

2006-01-31  Andrew Pinski  <pinskia@physics.uc.edu>

        * mode-switching.c (optimize_mode_switching): Fix size
        allocated for bb_info[n_entities].

From-SVN: r110464
parent f685bbcb
2006-01-31 Andrew Pinski <pinskia@physics.uc.edu>
* mode-switching.c (optimize_mode_switching): Fix size
allocated for bb_info[n_entities].
2006-01-31 Andrew Pinski <pinskia@physics.uc.edu>
* gcc.c (main): Correct type that is allocated for
explicit_link_files.
......
......@@ -415,7 +415,7 @@ optimize_mode_switching (FILE *file)
entry_exit_extra = 3;
#endif
bb_info[n_entities]
= XCNEWVEC (struct bb_info, last_basic_block);
= XCNEWVEC (struct bb_info, last_basic_block + entry_exit_extra);
entity_map[n_entities++] = e;
if (num_modes[e] > max_num_modes)
max_num_modes = num_modes[e];
......
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