]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* ifcvt.c (if_convert): Output slim multiple dumps with TDF_SLIM.
authorUros Bizjak <ubizjak@gmail.com>
Wed, 6 Jan 2010 13:14:17 +0000 (14:14 +0100)
committerUros Bizjak <uros@gcc.gnu.org>
Wed, 6 Jan 2010 13:14:17 +0000 (14:14 +0100)
From-SVN: r155673

gcc/ChangeLog
gcc/ifcvt.c

index 4faf7d1d15061696ce6ae3fe119137facf3d8e10..501c8d91e819fc4ee6daaac169546a3f18693925 100644 (file)
@@ -1,3 +1,7 @@
+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
index 9efd27d999fb537638fb8012bf353a06fca0b1cf..00ac61ec4786c237345ff15251d63a0f384bf821 100644 (file)
@@ -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);