Change threading comment before pass_ccp pass.
authorAldy Hernandez <aldyh@redhat.com>
Tue, 19 Oct 2021 07:33:34 +0000 (09:33 +0200)
committerAldy Hernandez <aldyh@redhat.com>
Tue, 19 Oct 2021 08:48:46 +0000 (10:48 +0200)
gcc/ChangeLog:

* passes.def: Change threading comment before pass_ccp pass.

gcc/passes.def

index c11c237..4c54176 100644 (file)
@@ -339,9 +339,7 @@ along with GCC; see the file COPYING3.  If not see
       NEXT_PASS (pass_thread_jumps);
       NEXT_PASS (pass_vrp, false /* warn_array_bounds_p */);
       NEXT_PASS (pass_vrp_threader);
-      /* Threading can leave many const/copy propagations in the IL.
-        Clean them up.  Instead of just copy_prop, we use ccp to
-        compute alignment and nonzero bits.  */
+      /* Run CCP to compute alignment and nonzero bits.  */
       NEXT_PASS (pass_ccp, true /* nonzero_p */);
       NEXT_PASS (pass_warn_restrict);
       NEXT_PASS (pass_dse);