From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id B56FF385742A; Thu, 28 Jul 2022 06:39:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B56FF385742A 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: 7c8dc5e1c61c8940b3d288f71ee8e47a38d26a93 X-Git-Newrev: 42ded389f97884490972bbf51a2993dcac57e690 Message-Id: <20220728063914.B56FF385742A@sourceware.org> Date: Thu, 28 Jul 2022 06:39:14 +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: Thu, 28 Jul 2022 06:39:14 -0000 https://gcc.gnu.org/g:42ded389f97884490972bbf51a2993dcac57e690 commit 42ded389f97884490972bbf51a2993dcac57e690 Author: Alexandre Oliva Date: Thu Jul 28 03:30:24 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 165f8d1fa22..7a4eff12951 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;