From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id AC34D3856DFE; Fri, 9 Jun 2023 08:08:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AC34D3856DFE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686298089; bh=PhjZP9MRHkke1K6pLIJQOxzxTYDBJpeSXcHbKSz6ry4=; h=From:To:Subject:Date:From; b=hL2zetBLYenkjtGlx6GKFWmQlfuNU8fwQ7XxUZ/EU0fY4QeTO3Y4gkuB16x5ajloY +zTxfst8R1tlc6e7XsIcP2SivIR+/KsJj7Ho15gSWAWPLGj+Nxh6zltx1w8EM/UWdy aSK5T1u96cw/eBP1oHj7nzaI1qKnqk5pufCddaWc= 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/testme)] silence warnings X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/testme X-Git-Oldrev: e554447dd6bee3e664da5ad3993bc3dd2fec8f6d X-Git-Newrev: 3af07c3573bc68c4f826a88e4e18a1978f8258e5 Message-Id: <20230609080809.AC34D3856DFE@sourceware.org> Date: Fri, 9 Jun 2023 08:08:09 +0000 (GMT) List-Id: https://gcc.gnu.org/g:3af07c3573bc68c4f826a88e4e18a1978f8258e5 commit 3af07c3573bc68c4f826a88e4e18a1978f8258e5 Author: Alexandre Oliva Date: Thu Jun 8 01:36:00 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 c8e39c82d57..15a0237d24e 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;