aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2022-10-14 15:02:06 +0200
committerAldy Hernandez <aldyh@redhat.com>2022-10-14 16:27:40 +0200
commit823e9097f70eb95ef09fde357aebd071aec311d9 (patch)
tree0abf0306c1151f8d4596041c1120291a8be32201
parent464f0503b91f11ba65e95319088cb68ee872c76f (diff)
downloadgcc-823e9097f70eb95ef09fde357aebd071aec311d9.zip
gcc-823e9097f70eb95ef09fde357aebd071aec311d9.tar.gz
gcc-823e9097f70eb95ef09fde357aebd071aec311d9.tar.bz2
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.
-rw-r--r--gcc/gimple-range-op.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/gimple-range-op.cc b/gcc/gimple-range-op.cc
index 9bdef3d..527893f 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;