diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2021-11-02 21:26:44 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2021-11-03 10:37:24 -0400 |
commit | 502ffb1f389011b28ee51815242c7397790802d5 (patch) | |
tree | 91d5c17933c7b4a36b1c2073c1bb8062f4e60a5d /gcc | |
parent | 1410b208013e4ccd9438cda178c7ea995684e7e8 (diff) | |
download | gcc-502ffb1f389011b28ee51815242c7397790802d5.zip gcc-502ffb1f389011b28ee51815242c7397790802d5.tar.gz gcc-502ffb1f389011b28ee51815242c7397790802d5.tar.bz2 |
Switch vrp2 to ranger.
This patch flips the default for the VRP2 pass to execute ranger vrp rather
than the assert_expr version of VRP.
* params.opt (param_vrp2_mode): Make ranger the default for VRP2.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/params.opt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/params.opt b/gcc/params.opt index 8c5948f..6096854 100644 --- a/gcc/params.opt +++ b/gcc/params.opt @@ -1156,7 +1156,7 @@ Common Joined Var(param_vrp1_mode) Enum(vrp_mode) Init(VRP_MODE_VRP) Param Optim --param=vrp1-mode=[vrp|ranger] Specifies the mode VRP1 should operate in. -param=vrp2-mode= -Common Joined Var(param_vrp2_mode) Enum(vrp_mode) Init(VRP_MODE_VRP) Param Optimization +Common Joined Var(param_vrp2_mode) Enum(vrp_mode) Init(VRP_MODE_RANGER) Param Optimization --param=vrp2-mode=[vrp|ranger] Specifies the mode VRP2 should operate in. Enum |