passes.def: Put late dse and cd_dce in canonical order.
authorRichard Biener <rguenther@suse.de>
Wed, 18 May 2016 07:41:09 +0000 (07:41 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 18 May 2016 07:41:09 +0000 (07:41 +0000)
2016-05-18  Richard Biener  <rguenther@suse.de>

* passes.def: Put late dse and cd_dce in canonical order.

From-SVN: r236358

gcc/ChangeLog
gcc/passes.def

index 40d723b2b179ba5339d7126fd996438c218b76ff..61a485c0923f68b5401c865804e2758958d1de4c 100644 (file)
@@ -1,3 +1,7 @@
+2016-05-18  Richard Biener  <rguenther@suse.de>
+
+       * passes.def: Put late dse and cd_dce in canonical order.
+
 2016-05-17  Jan Hubicka  <hubicka@ucw.cz>
 
        * ipa-inline-transform.c (preserve_function_body_p): Look for
index 0e55829fe62327e7335b01cd50f30fcd6d71b108..21427d7b6e76636b7d39916e7116d2f55c5ce116 100644 (file)
@@ -315,8 +315,8 @@ along with GCC; see the file COPYING3.  If not see
         only examines PHIs to discover const/copy propagation
         opportunities.  */
       NEXT_PASS (pass_phi_only_cprop);
-      NEXT_PASS (pass_cd_dce);
       NEXT_PASS (pass_dse);
+      NEXT_PASS (pass_cd_dce);
       NEXT_PASS (pass_forwprop);
       NEXT_PASS (pass_phiopt);
       NEXT_PASS (pass_fold_builtins);