]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
aarch64: Make ldp/stp pass off by default
authorAlex Coplan <alex.coplan@arm.com>
Wed, 10 Jan 2024 14:50:49 +0000 (14:50 +0000)
committerAlex Coplan <alex.coplan@arm.com>
Wed, 10 Jan 2024 14:50:49 +0000 (14:50 +0000)
As discussed on IRC, this makes the aarch64 ldp/stp pass off by default.  This
should stabilize the trunk and give some time to address the P1 regressions.

gcc/ChangeLog:

* config/aarch64/aarch64.opt (-mearly-ldp-fusion): Set default
to 0.
(-mlate-ldp-fusion): Likewise.

gcc/config/aarch64/aarch64.opt

index ceed5cdb201fcdeb74f520eb5205da18109926d4..c495cb34fbfb4144b14dfae4fdbf64689c8e23a0 100644 (file)
@@ -290,12 +290,12 @@ Target Var(aarch64_track_speculation)
 Generate code to track when the CPU might be speculating incorrectly.
 
 mearly-ldp-fusion
-Target Var(flag_aarch64_early_ldp_fusion) Optimization Init(1)
+Target Var(flag_aarch64_early_ldp_fusion) Optimization Init(0)
 Enable the copy of the AArch64 load/store pair fusion pass that runs before
 register allocation.
 
 mlate-ldp-fusion
-Target Var(flag_aarch64_late_ldp_fusion) Optimization Init(1)
+Target Var(flag_aarch64_late_ldp_fusion) Optimization Init(0)
 Enable the copy of the AArch64 load/store pair fusion pass that runs after
 register allocation.