From patchwork Mon Aug 20 11:39:40 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Hubicka X-Patchwork-Id: 959610 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-483958-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ucw.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="qkdEIwvv"; 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 41vBgC22Sxz9s4v for ; Mon, 20 Aug 2018 21:39:51 +1000 (AEST) 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=KEXeNWapTyNvF3wqIPnzFU2vwJAY7Eou3uvC64XXFeveM1m832ce4 yJaLTk/brUoELNN8eqKMzobZ0wxr9cvJX3ABL0q7s6K/OAQkY0v9KKhsVUqSqh1H 2H4c8Vu66/rZ34Cwf9cOdbq6OsP4iW13fAOW5EdkVDdcGueECdwe8w= 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=GHtmNlyNcDt+5aJOb2FqkSpiEYg=; b=qkdEIwvvOUWzqbSDY4Db yhvGtfhCQ95SOaS6T9WXXV+qm6me8kS/M50V8gc8H8LsL3zASmq6+cnHQ8/3y+ds gr2smMnIMQNOV/CohWVev3DgTtIqMhCx98a3/jU2PvT66wT0+fOcR6InT7ChfCL3 PKg1wgjvr05NneoemuRNaog= Received: (qmail 47780 invoked by alias); 20 Aug 2018 11:39:44 -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 47771 invoked by uid 89); 20 Aug 2018 11:39:43 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-10.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=Hx-languages-length:638 X-HELO: nikam.ms.mff.cuni.cz Received: from nikam.ms.mff.cuni.cz (HELO nikam.ms.mff.cuni.cz) (195.113.20.16) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 20 Aug 2018 11:39:42 +0000 Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id B1288541DB7; Mon, 20 Aug 2018 13:39:40 +0200 (CEST) Date: Mon, 20 Aug 2018 13:39:40 +0200 From: Jan Hubicka To: gcc-patches@gcc.gnu.org, rguenther@suse.de Subject: Remove obsolette hunk in free_lang_data_r Message-ID: <20180820113940.GB88902@kam.mff.cuni.cz> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Hi, this hunk should be obsolette now. Bootstrapped/regtested x86_64-linux, OK? Honza Index: tree.c =================================================================== --- tree.c (revision 263586) +++ tree.c (working copy) @@ -5542,11 +5565,7 @@ find_decls_types_r (tree *tp, int *ws, v tem = TYPE_FIELDS (t); while (tem) { - if (TREE_CODE (tem) == FIELD_DECL - || (TREE_CODE (tem) == TYPE_DECL - && !DECL_IGNORED_P (tem) - && debug_info_level > DINFO_LEVEL_TERSE - && !is_redundant_typedef (tem))) + if (TREE_CODE (tem) == FIELD_DECL) fld_worklist_push (tem, fld); tem = TREE_CHAIN (tem); }