aboutsummaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r--gcc/targhooks.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index c9b5208..cbbcedf 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -2453,12 +2453,12 @@ default_max_noce_ifcvt_seq_cost (edge e)
if (predictable_p)
{
- if (global_options_set.x_param_max_rtl_if_conversion_predictable_cost)
+ if (OPTION_SET_P (param_max_rtl_if_conversion_predictable_cost))
return param_max_rtl_if_conversion_predictable_cost;
}
else
{
- if (global_options_set.x_param_max_rtl_if_conversion_unpredictable_cost)
+ if (OPTION_SET_P (param_max_rtl_if_conversion_unpredictable_cost))
return param_max_rtl_if_conversion_unpredictable_cost;
}