From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id D6B5E3856DCD; Fri, 9 Jun 2023 06:18:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D6B5E3856DCD DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686291493; bh=UQxBe84E6P6V/wDTGzYaImzxnh6vriBxG9my4lwgV/0=; h=From:To:Subject:Date:From; b=hTfjOUewA3/tCf27Hw030Wnv9yZ6cSNCQyPpfpCClTjQSBy410fjplGt2z0ldciou nbEpoM3/K4x4JBqZwRVmbm/xLjIVKSVV78eHPk3wkq4LONEWWthSATM/peU8vTCtli 2fCQo1BP9N/vo1Jgio1n8xkeeJ6POp9n8NP2u/KI= 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: 9837802c90b2410bfa16c25fede105b32a6e15ec X-Git-Newrev: 9411c5d493f63fd24d382793eb2accdc86e286d0 Message-Id: <20230609061813.D6B5E3856DCD@sourceware.org> Date: Fri, 9 Jun 2023 06:18:13 +0000 (GMT) List-Id: https://gcc.gnu.org/g:9411c5d493f63fd24d382793eb2accdc86e286d0 commit 9411c5d493f63fd24d382793eb2accdc86e286d0 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;