From patchwork Mon Jan 28 09:35:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Biener X-Patchwork-Id: 1031789 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-494819-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.de Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="a7x4mcp6"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43p4J45Ywzz9sBn for ; Mon, 28 Jan 2019 20:36:03 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=vDqGNluucA8XRnoGWs7NTzURdzkmDWIYtyORqnKFpXJUhxcDRllFl vtIycmogA2eUQZewjWHw4MCbcz6d0cXmMP3MtAQ0CjhSSoJGhwFSM2hB3vLJvRjs o6AuqvasxuE7ADPtqSHO2Sf2938wK3Iuw02bz5qb1c7hQYYdDbfT1s= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=ID3w4N/jB8mBuorlVodUuXpNRmo=; b=a7x4mcp661gaBaR23ivY fLI7nTI9lKUCzOGaCeMGW3cOzBjd/IidfnyLaJzlaTPBBgZr7IGmaxgH8iWb+vvi JVDf8XbpdYDJggyKaIfhaBxYctnJnFU/zP0eyZ+GLt0paT/AXbGv1HX16WQhtRJl ygCchoBXNdAk0fAZea9/bcs= Received: (qmail 77946 invoked by alias); 28 Jan 2019 09:35:55 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 77937 invoked by uid 89); 28 Jan 2019 09:35:55 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.4 required=5.0 tests=BAYES_00, GIT_PATCH_2, GIT_PATCH_3, KAM_NUMSUBJECT, SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 28 Jan 2019 09:35:54 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 790C4AC15 for ; Mon, 28 Jan 2019 09:35:52 +0000 (UTC) Date: Mon, 28 Jan 2019 10:35:52 +0100 (CET) From: Richard Biener To: gcc-patches@gcc.gnu.org Subject: [PATCH] Fix PR89076 Message-ID: User-Agent: Alpine 2.20 (LSU 67 2015-01-07) MIME-Version: 1.0 Committed as obvious. Richard. 2019-01-28 Richard Biener PR debug/89076 * dwarf2out.c (gen_subprogram_die): Remove leftover from MPX support removal. Index: gcc/dwarf2out.c =================================================================== --- gcc/dwarf2out.c (revision 268332) +++ gcc/dwarf2out.c (working copy) @@ -23267,8 +23267,6 @@ gen_subprogram_die (tree decl, dw_die_re parm = DECL_CHAIN (parm); } - else if (parm) - parm = DECL_CHAIN (parm); if (generic_decl_parm) generic_decl_parm = DECL_CHAIN (generic_decl_parm);