From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id AA3FB3856DE7; Fri, 6 May 2022 08:38:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AA3FB3856DE7 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/hard12)] silence warnings X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/hard12 X-Git-Oldrev: 53bd90e811f95f4b258d37c85f7ea257bc3dc04b X-Git-Newrev: 7a397cc6c732823c11780429f955636472fdcdb4 Message-Id: <20220506083804.AA3FB3856DE7@sourceware.org> Date: Fri, 6 May 2022 08:38:04 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2022 08:38:04 -0000 https://gcc.gnu.org/g:7a397cc6c732823c11780429f955636472fdcdb4 commit 7a397cc6c732823c11780429f955636472fdcdb4 Author: Alexandre Oliva Date: Fri May 6 05:34:53 2022 -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 3d8fa3abdfe..b5f2f94f076 100644 --- a/gcc/optabs.cc +++ b/gcc/optabs.cc @@ -255,7 +255,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;