Commit 786c3fbc by Uros Bizjak Committed by Uros Bizjak

* ifcvt.c (if_convert): Output slim multiple dumps with TDF_SLIM.

From-SVN: r155673
parent 48565aaf
2010-01-06 Uros Bizjak <ubizjak@gmail.com>
* ifcvt.c (if_convert): Output slim multiple dumps with TDF_SLIM.
2010-01-05 H.J. Lu <hongjiu.lu@intel.com>
PR target/42542
......
......@@ -4165,7 +4165,12 @@ if_convert (void)
#ifdef IFCVT_MULTIPLE_DUMPS
if (dump_file && cond_exec_changed_p)
print_rtl_with_bb (dump_file, get_insns ());
{
if (dump_flags & TDF_SLIM)
print_rtl_slim_with_bb (dump_file, get_insns (), dump_flags);
else
print_rtl_with_bb (dump_file, get_insns ());
}
#endif
}
while (cond_exec_changed_p);
......
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