From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 92598 invoked by alias); 15 Jan 2020 20:46:00 -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 92253 invoked by uid 89); 15 Jan 2020 20:45:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.1 spammy=sk:hppa64, sk:hppa64- X-HELO: us-smtp-delivery-1.mimecast.com Received: from us-smtp-1.mimecast.com (HELO us-smtp-delivery-1.mimecast.com) (205.139.110.61) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 15 Jan 2020 20:45:42 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1579121125; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=vfDaIvnEL0VT6qf1pKbzjue0BRoonDewOveSAo3ZKnk=; b=cGRhcSefJRC61y83heaR5d4McHVuyANN8txQeF1ePjYtFVSuddxfOvHtehXbUo7PqLPose G3D8KNb0qtQSpFzUWPHiqKScUgrBLvNiEpcOMN+u8Kbr01g20c8yMsIFW3zJ/hGJ/gXXf0 hBhorH4Kgv9oJt2LE4kbDTPnSNDP83s= 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-218-Br4OIVj0MwyjZcKRvhcJMQ-1; Wed, 15 Jan 2020 15:45:22 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 87ABE18CA240; Wed, 15 Jan 2020 20:45:21 +0000 (UTC) Received: from ovpn-112-26.phx2.redhat.com (ovpn-112-26.phx2.redhat.com [10.3.112.26]) by smtp.corp.redhat.com (Postfix) with ESMTP id 16ECE5C21B; Wed, 15 Jan 2020 20:45:20 +0000 (UTC) Message-ID: <147d42aede9b008201d02049f11b3a3a38d2622c.camel@redhat.com> Subject: Re: [PATCH] Fix PR libgcc/92988 From: Jeff Law Reply-To: law@redhat.com To: John David Anglin , GCC Patches Date: Wed, 15 Jan 2020 21:40:00 -0000 In-Reply-To: <84d60d5f-6d39-ae55-9fb2-a95674b32197@bell.net> References: <84d60d5f-6d39-ae55-9fb2-a95674b32197@bell.net> User-Agent: Evolution 3.34.3 (3.34.3-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: 2020-01/txt/msg00914.txt.bz2 On Mon, 2019-12-30 at 14:23 -0500, John David Anglin wrote: > Tested on hppa64-hp-hpux11.11. > > Okay? > > Dave > > 2019-12-30 John David Anglin > > PR libgcc/92988 > * crtstuff.c (__do_global_dtors_aux): Only call __cxa_finalize if > DEFAULT_USE_CXA_ATEXIT is true. Who is supposed to define DEFAULT_USE_CXA_ATEXIT? I can't seem to find any references to it within GCC itself. I don't doubt there's a problem, I'm just not sure we've got the right #ifdef around the code in question. Jeff >