From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 90478 invoked by alias); 23 Apr 2019 10:08:12 -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 90464 invoked by uid 89); 23 Apr 2019 10:08:11 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=dealt, HX-Languages-Length:1042 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Apr 2019 10:08:10 +0000 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 59D47307CDD6; Tue, 23 Apr 2019 10:08:09 +0000 (UTC) Received: from tucnak.zalov.cz (unknown [10.40.205.45]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9FA8A5D719; Tue, 23 Apr 2019 10:08:08 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id x3NA85le004103; Tue, 23 Apr 2019 12:08:06 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id x3NA83Eg004102; Tue, 23 Apr 2019 12:08:03 +0200 Date: Tue, 23 Apr 2019 10:24:00 -0000 From: Jakub Jelinek To: Ramana Radhakrishnan , Eric Botcazou , Arnaud Charlet , Pierre-Marie de Rodat , Ian Lance Taylor Cc: gcc-patches Subject: Re: [PATCH] Fix ARM exception handling (PR target/89093) Message-ID: <20190423100803.GQ21066@tucnak> Reply-To: Jakub Jelinek References: <20190422091450.GM21066@tucnak> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.3 (2019-02-01) X-IsSubscribed: yes X-SW-Source: 2019-04/txt/msg00874.txt.bz2 On Tue, Apr 23, 2019 at 09:17:50AM +0100, Ramana Radhakrishnan wrote: > > Ok for trunk? > > Ok. Thanks a lot for working on this and fixing the rest of this up. > I've been busy with a few other things. Thanks. Based on this and Iain and Jonathan's acks, I've committed the patch except for the > > 2019-04-22 Ramana Radhakrishnan > > Bernd Edlinger > > Jakub Jelinek > > > > PR target/89093 > > gcc/ada/ > > * raise-gcc.c (TARGET_ATTRIBUTE): Define. > > (continue_unwind, personality_body, PERSONALITY_FUNCTION): Add > > TARGET_ATTRIBUTE. > > libgo/ > > * runtime/go-unwind.c (PERSONALITY_FUNCTION, > > __gccgo_personality_dummy): Add general-regs-only target > > attribute for ARM. parts, where for gcc/ada/ I'm waiting for an Ada maintainer review (CCed all maintainers now) and for libgo I think this needs to be fixed upstream and also dealt with non-gcc compilers or gcc 8.x and earlier. Jakub