From: Aldy Hernandez Date: Fri, 14 Oct 2022 13:02:06 +0000 (+0200) Subject: Replace CFN_BUILTIN_SIGNBIT* cases with CASE_FLT_FN. X-Git-Tag: basepoints/gcc-14~3905 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=823e9097f70eb95ef09fde357aebd071aec311d9;p=thirdparty%2Fgcc.git Replace CFN_BUILTIN_SIGNBIT* cases with CASE_FLT_FN. gcc/ChangeLog: * gimple-range-op.cc (gimple_range_op_handler::maybe_builtin_call): Replace CFN_BUILTIN_SIGNBIT* cases with CASE_FLT_FN. --- diff --git a/gcc/gimple-range-op.cc b/gcc/gimple-range-op.cc index 9bdef3d45c00..527893f66af2 100644 --- a/gcc/gimple-range-op.cc +++ b/gcc/gimple-range-op.cc @@ -756,9 +756,7 @@ gimple_range_op_handler::maybe_builtin_call () m_valid = false; break; - case CFN_BUILT_IN_SIGNBIT: - case CFN_BUILT_IN_SIGNBITF: - case CFN_BUILT_IN_SIGNBITL: + CASE_FLT_FN (CFN_BUILT_IN_SIGNBIT): m_op1 = gimple_call_arg (call, 0); m_float = &op_cfn_signbit; m_valid = true;