From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id D4CD2389367F; Fri, 20 Aug 2021 04:20:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D4CD2389367F 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: 1f10fc356258887e1de8df4e870d45e4f302d8f7 X-Git-Newrev: 7b04a38dbfaccc7f76d661c223204d98582b05e2 Message-Id: <20210820042058.D4CD2389367F@sourceware.org> Date: Fri, 20 Aug 2021 04:20:58 +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, 20 Aug 2021 04:20:58 -0000 https://gcc.gnu.org/g:7b04a38dbfaccc7f76d661c223204d98582b05e2 commit 7b04a38dbfaccc7f76d661c223204d98582b05e2 Author: Alexandre Oliva Date: Wed Aug 18 23:57:15 2021 -0300 silence warnings Diff: --- gcc/optabs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/optabs.c b/gcc/optabs.c index 14d8ad2f33f..c9d93c01548 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -253,7 +253,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;