Commit 67daed71 by Uros Bizjak Committed by Jeff Law

mode-switching.c (optimize_mode_switching): Fix n_exprs parameter in call to pre_edge_lcm.


        * mode-switching.c (optimize_mode_switching): Fix n_exprs parameter
	in call to pre_edge_lcm.

From-SVN: r100690
parent 0ae97690
2005-06-06 Uros Bizjak <uros@kss-loka.si>
* mode-switching.c (optimize_mode_switching): Fix n_exprs parameter
in call to pre_edge_lcm.
2005-06-06 Kaz Kojima <kkojima@gcc.gnu.org> 2005-06-06 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/linux-unwind.h (SH_DWARF_FRAME_XD0): Remove for SH5. * config/sh/linux-unwind.h (SH_DWARF_FRAME_XD0): Remove for SH5.
......
...@@ -549,7 +549,7 @@ optimize_mode_switching (FILE *file) ...@@ -549,7 +549,7 @@ optimize_mode_switching (FILE *file)
FOR_EACH_BB (bb) FOR_EACH_BB (bb)
sbitmap_not (kill[bb->index], transp[bb->index]); sbitmap_not (kill[bb->index], transp[bb->index]);
edge_list = pre_edge_lcm (file, 1, transp, comp, antic, edge_list = pre_edge_lcm (file, n_entities, transp, comp, antic,
kill, &insert, &delete); kill, &insert, &delete);
for (j = n_entities - 1; j >= 0; j--) for (j = n_entities - 1; j >= 0; j--)
......
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