diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2021-10-19 09:33:34 +0200 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2021-10-19 10:48:46 +0200 |
commit | d2161caffbb56a434776608af4e4491b59e508c8 (patch) | |
tree | 69765987757e217b1d2ef1632548fa7802b21ef7 /gcc | |
parent | 91419baf4d0075d11e3667b816c83687288163fd (diff) | |
download | gcc-d2161caffbb56a434776608af4e4491b59e508c8.zip gcc-d2161caffbb56a434776608af4e4491b59e508c8.tar.gz gcc-d2161caffbb56a434776608af4e4491b59e508c8.tar.bz2 |
Change threading comment before pass_ccp pass.
gcc/ChangeLog:
* passes.def: Change threading comment before pass_ccp pass.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/passes.def | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/passes.def b/gcc/passes.def index c11c237..4c54176 100644 --- a/gcc/passes.def +++ b/gcc/passes.def @@ -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); |