From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 0CF97385DC05; Thu, 7 Dec 2023 16:18:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0CF97385DC05 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1701965889; bh=mLIHkDhfGPX2dR5Jq/ftnI4AAGS2qv5HfYmHpVnxvIY=; h=From:To:Subject:Date:From; b=wbqaPtWPET1s163C8tMj1CCFPcE9XrMi3B+KZ3/CNGF/PJSNOyNxmFJgAmYrkK/c4 Up44LgAgwQtrjTc/TLEZ5eBc1/brkADEZB7TDwUmW7cc3PlQCODqhyyMTT+hW5HuhA aw5PXOJzc4kqdVAysl4KLSXoQVMoiumQxqbqP2ZU= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/aoliva/heads/strub)] silence warnings X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/strub X-Git-Oldrev: e27b3fc94cc1b8e525bcb57fd64f34297a837f97 X-Git-Newrev: 63c5efa8eded0f19ceeeae9f753284fa99c419cc Message-Id: <20231207161809.0CF97385DC05@sourceware.org> Date: Thu, 7 Dec 2023 16:18:09 +0000 (GMT) List-Id: https://gcc.gnu.org/g:63c5efa8eded0f19ceeeae9f753284fa99c419cc commit 63c5efa8eded0f19ceeeae9f753284fa99c419cc Author: Alexandre Oliva Date: Tue Jun 13 05:41:11 2023 -0300 silence warnings Diff: --- gcc/optabs.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/optabs.cc b/gcc/optabs.cc index f0a048a6bdb..c5ecd23a4df 100644 --- a/gcc/optabs.cc +++ b/gcc/optabs.cc @@ -257,7 +257,7 @@ expand_widen_pattern_expr (sepops ops, rtx op0, rtx op1, rtx wide_op, rtx target, int unsignedp) { class expand_operand eops[4]; - tree oprnd0, oprnd1, oprnd2; + tree oprnd0, oprnd1 = NULL_TREE, oprnd2 = NULL_TREE; machine_mode wmode = VOIDmode, tmode0, tmode1 = VOIDmode; optab widen_pattern_optab; enum insn_code icode;