From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id BE97A3858024 for ; Fri, 14 Oct 2022 14:27:02 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BE97A3858024 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1665757622; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=RTNoZxQkc/YX2Wjg0HyMjdMw+5xu2OdwXmkmbyn7NQw=; b=f1fRe/6WUNwQVd62Px0Sg6jVPafFGnsy2ykMMsDNA3MqCtFDpiZdIltOoB5EZXaZurY3f/ 92c/GW44zlOFPOtBNilQdqIgXfyvSn2a8bRuLy1tJIDkXd+C5ykXsgJsRDtvD5yy02kEFa ufjTfs1su9K9PqdHHVEwBCaPKNzdj/Y= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-362-LVJVaytJNhK0DFGIioG2Vw-1; Fri, 14 Oct 2022 10:27:01 -0400 X-MC-Unique: LVJVaytJNhK0DFGIioG2Vw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id CC1B4101A54E for ; Fri, 14 Oct 2022 14:27:00 +0000 (UTC) Received: from abulafia.quesejoda.com (unknown [10.39.195.163]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6C3FF1111C6A; Fri, 14 Oct 2022 14:27:00 +0000 (UTC) Received: from abulafia.quesejoda.com (localhost [127.0.0.1]) by abulafia.quesejoda.com (8.17.1/8.17.1) with ESMTPS id 29EEQwva671516 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NOT); Fri, 14 Oct 2022 16:26:58 +0200 Received: (from aldyh@localhost) by abulafia.quesejoda.com (8.17.1/8.17.1/Submit) id 29EEQw8T671515; Fri, 14 Oct 2022 16:26:58 +0200 From: Aldy Hernandez To: GCC patches Cc: Andrew MacLeod , Aldy Hernandez Subject: [COMMITTED] Replace CFN_BUILTIN_SIGNBIT* cases with CASE_FLT_FN. Date: Fri, 14 Oct 2022 16:26:52 +0200 Message-Id: <20221014142652.671475-3-aldyh@redhat.com> In-Reply-To: <20221014142652.671475-1-aldyh@redhat.com> References: <20221014142652.671475-1-aldyh@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-Spam-Status: No, score=-11.5 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: gcc/ChangeLog: * gimple-range-op.cc (gimple_range_op_handler::maybe_builtin_call): Replace CFN_BUILTIN_SIGNBIT* cases with CASE_FLT_FN. --- gcc/gimple-range-op.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gcc/gimple-range-op.cc b/gcc/gimple-range-op.cc index 9bdef3d45c0..527893f66af 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; -- 2.37.3