From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 18D53385802F; Fri, 6 Oct 2023 05:25:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 18D53385802F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1696569956; bh=UUijnooU+llsnFqv4IBYnwezKQKlGFsCXTakMmPrW+A=; h=From:To:Subject:Date:From; b=OFSEsbl8u8uXUnR9dyE8ry7VkwztlxV25opZUdAdwDBhfHR3pSMZDh88rdiuVD6nn n9NvNZ+VAdMEHKgmzxk+ZNJ2qozYzgxJUl/ZcNcLOEtKHVS0i8QuF1BWjsnvWjSPNL oW+837cOWBiwd+yTK5oUB9Qyb2qWIavyAJYWuL0A= 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: 8ee134c81c666d6d360a45733838849a5a029757 X-Git-Newrev: 87895301a81a4fe1fcea84f74104cf5fe883fb77 Message-Id: <20231006052556.18D53385802F@sourceware.org> Date: Fri, 6 Oct 2023 05:25:56 +0000 (GMT) List-Id: https://gcc.gnu.org/g:87895301a81a4fe1fcea84f74104cf5fe883fb77 commit 87895301a81a4fe1fcea84f74104cf5fe883fb77 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 e1898da2280..6c47a525c1f 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;