From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 29CE1395ACCE; Mon, 29 Jun 2020 21:29:55 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 29CE1395ACCE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1593466195; bh=EH+hEIAk5blTlel8GFKMsKyabIPFvFXX7tGCraHLMgc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Rc/pISzZQXnwgMmjaGmhZSPU0E6CIR+nenSAD2B2qE8pGU2PR3pAMJLmYvVBtd1IA dEk4e6EwJoCXRpauR3h6TIptoZw7jUL5Bm3wtN1H5LsnOVdeTk6IW4FW6PGUn0qa5Q HU1K3ad2DmGQynqZNO49V/0+Ql65LjIL1TStmo/o= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBib290c3RyYXAvOTU5NzBdIGdjYy9nby9nb2Zyb250ZW5k?= =?UTF-8?B?L3R5cGVzLmNjOjE0NzQ6MzQ6IHdhcm5pbmc6IOKAmHRoaXPigJkgcG9pbnRl?= =?UTF-8?B?ciBudWxs?= Date: Mon, 29 Jun 2020 21:29:54 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Jun 2020 21:29:55 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95970 --- Comment #6 from CVS Commits --- The master branch has been updated by Ian Lance Taylor : https://gcc.gnu.org/g:9bca676cc7a1670be021567ae4a128a5082229d3 commit r11-1721-g9bca676cc7a1670be021567ae4a128a5082229d3 Author: Ian Lance Taylor Date: Mon Jun 29 11:30:43 2020 -0700 compiler: remove some erroneous code that was never run The code accidentally called Type::type_descriptor rather than the do_type_descriptor method. Calling Type::type_descriptor with a second argument of NULL would always crash. Since that never happened, it revealed that this code was never actually executed. Fixes PR go/95970 Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/240477=