From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 34EE73858D38; Mon, 20 Nov 2023 10:47:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 34EE73858D38 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1700477225; bh=d2Qpaetv5UopdypEz9IMT8FKtT86wuc9/pVOAeP9580=; h=From:To:Subject:Date:From; b=fb3WxZ5fQrZ5EuAuX0KDvwRCpTdOwcBnGIZpHU2jDTIuY6aMWOc0nVn2fe1A4TWVp yr6DWS81I9um7MNX37iEumFVkqU99/lr3eefFrBX9DrMIi4FEepvmvmYp+bZMTpWvr VqBVczMT6MppKq3H59+1ivM8jat0bUpt8j6WOFZM= 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: fae394e99ed92c9ea302ebd923334b44638564bf X-Git-Newrev: 8914a9884445e9a14ddb83a403242027b7f29224 Message-Id: <20231120104705.34EE73858D38@sourceware.org> Date: Mon, 20 Nov 2023 10:47:05 +0000 (GMT) List-Id: https://gcc.gnu.org/g:8914a9884445e9a14ddb83a403242027b7f29224 commit 8914a9884445e9a14ddb83a403242027b7f29224 Author: Alexandre Oliva Date: Tue Jun 13 05:41:11 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 f0a048a6bdb..c5ecd23a4df 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;