shrink-wrap: Fix up partitions (PR67587)
authorSegher Boessenkool <segher@kernel.crashing.org>
Wed, 16 Sep 2015 15:02:32 +0000 (17:02 +0200)
committerSegher Boessenkool <segher@gcc.gnu.org>
Wed, 16 Sep 2015 15:02:32 +0000 (17:02 +0200)
With the new shrink-wrap algorithm, blocks reachable both with and
without prologue are duplicated, and their incoming edges are then
distributed accordingly.  So we need to call fixup_partitions.

2015-09-16  Segher Boessenkool  <segher@kernel.crashing.org>

PR bootstrap/67587
* function.c (rest_of_handle_thread_prologue_and_epilogue): Call
fixup_partitions.

From-SVN: r227827

gcc/ChangeLog
gcc/function.c

index e09c84c38d2cd6ee2d2f10dedbcd5220390cfca8..cdbfe48f7c63ce4538f8c674d9fd02b244d6f372 100644 (file)
@@ -1,3 +1,9 @@
+2015-09-16  Segher Boessenkool  <segher@kernel.crashing.org>
+
+       PR bootstrap/67587
+       * function.c (rest_of_handle_thread_prologue_and_epilogue): Call
+       fixup_partitions.
+
 2015-09-16  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/67253
index 2c5a6d484f6816b513f46e5d6a6b51cb00671e49..bb75b1c80852093e0dfd5089a3e3a05a88331021 100644 (file)
@@ -6668,6 +6668,10 @@ rest_of_handle_thread_prologue_and_epilogue (void)
      scheduling to operate in the epilogue.  */
   thread_prologue_and_epilogue_insns ();
 
+  /* Some non-cold blocks may now be only reachable from cold blocks.
+     Fix that up.  */
+  fixup_partitions ();
+
   /* Shrink-wrapping can result in unreachable edges in the epilogue,
      see PR57320.  */
   cleanup_cfg (0);