From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16174 invoked by alias); 7 Dec 2019 18:29:44 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 16166 invoked by uid 89); 7 Dec 2019 18:29:43 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,HTML_MESSAGE autolearn=ham version=3.3.1 spammy=Wrap, H*c:alternative X-HELO: us-smtp-1.mimecast.com Received: from us-smtp-delivery-1.mimecast.com (HELO us-smtp-1.mimecast.com) (205.139.110.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 07 Dec 2019 18:29:43 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1575743381; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:mime-version:mime-version: content-type:content-type:in-reply-to:in-reply-to: references:references; bh=P4ES59g/U85LAwFAPPHz1foBM6km/PN7P0vyBFBuUcc=; b=QJTnhWArrBnqmUuLIuQ+CgH6xwBeVoeH93KiaeWruwGACkinoTZ0Ae1A85S6drSTrDC8vy HHJ/YOjms/BXOc3jm/ysboQMn+Q8gbgwhseXOee9g7ie614QRXuR8o31Q2KEmnclNVFjoD +Datc1ciuGyems6zRgVyjesbIm10PoA= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-46-iMHIhzxoPxONNBKfgT590Q-1; Sat, 07 Dec 2019 13:29:37 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 359308017DF; Sat, 7 Dec 2019 18:29:36 +0000 (UTC) Received: from ovpn-112-27.phx2.redhat.com (ovpn-112-27.phx2.redhat.com [10.3.112.27]) by smtp.corp.redhat.com (Postfix) with ESMTP id DACD05DA32; Sat, 7 Dec 2019 18:29:35 +0000 (UTC) Message-ID: <48f6ac4ccb2b242a1a4e5aaad95072045d44743e.camel@redhat.com> Subject: Re: [PATCH 2/3] libgcc: Dont define __do_global_dtors_aux if it will be empty From: Jeff Law Reply-To: law@redhat.com To: Jozef Lawrynowicz , "gcc-patches@gcc.gnu.org" Date: Sat, 07 Dec 2019 18:29:00 -0000 In-Reply-To: <20191106161750.0ac390fe@jozef-kubuntu> References: <20191106161420.2e16dba9@jozef-kubuntu> <20191106161750.0ac390fe@jozef-kubuntu> User-Agent: Evolution 3.34.2 (3.34.2-1.fc31) MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-12/txt/msg00518.txt.bz2 On Wed, 2019-11-06 at 16:17 +0000, Jozef Lawrynowicz wrote: > From 967262117f0c838fe8a9226484bf6e014c86f0ba Mon Sep 17 00:00:00 2001 > From: Jozef Lawrynowicz > Date: Tue, 29 Oct 2019 13:02:08 +0000 > Subject: [PATCH 2/3] libgcc: Dont define __do_global_dtors_aux if it will be > empty > > libgcc/ChangeLog: > > 2019-11-06 Jozef Lawrynowicz > > * crtstuff.c (__do_global_dtors_aux): Wrap in #if so it's only defined > if it will have contents. Generally OK with this as well. jeff