From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 62562 invoked by alias); 17 Aug 2015 22:00:22 -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 62473 invoked by uid 89); 17 Aug 2015 22:00:22 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,FROM_LOCAL_NOVOWEL,HK_RANDOM_ENVFROM,HK_RANDOM_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-la0-f44.google.com Received: from mail-la0-f44.google.com (HELO mail-la0-f44.google.com) (209.85.215.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 17 Aug 2015 22:00:20 +0000 Received: by lagz9 with SMTP id z9so87890925lag.3 for ; Mon, 17 Aug 2015 15:00:16 -0700 (PDT) X-Received: by 10.112.145.201 with SMTP id sw9mr2879412lbb.25.1439848816653; Mon, 17 Aug 2015 15:00:16 -0700 (PDT) Received: from octofox.metropolis ([5.19.183.212]) by smtp.gmail.com with ESMTPSA id z12sm4223016lbp.46.2015.08.17.15.00.15 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 17 Aug 2015 15:00:16 -0700 (PDT) From: Max Filippov To: gcc-patches@gcc.gnu.org Cc: linux-xtensa@linux-xtensa.org, Sterling Augustine , Max Filippov Subject: [PATCH 2/3] xtensa: use unwind-dw2-fde-dip instead of unwind-dw2-fde Date: Mon, 17 Aug 2015 22:42:00 -0000 Message-Id: <1439848790-3488-3-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1439848790-3488-1-git-send-email-jcmvbkbc@gmail.com> References: <1439848790-3488-1-git-send-email-jcmvbkbc@gmail.com> X-IsSubscribed: yes X-SW-Source: 2015-08/txt/msg00939.txt.bz2 This allows having exception cleanup code in binaries that don't register their unwind tables. 2015-08-18 Max Filippov libgcc/ * config/xtensa/t-windowed (LIB2ADDEH): Replace unwind-dw2-fde with unwind-dw2-fde-dip. --- libgcc/config/xtensa/t-windowed | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgcc/config/xtensa/t-windowed b/libgcc/config/xtensa/t-windowed index 7d9e9db..a99156c 100644 --- a/libgcc/config/xtensa/t-windowed +++ b/libgcc/config/xtensa/t-windowed @@ -1,2 +1,2 @@ LIB2ADDEH = $(srcdir)/config/xtensa/unwind-dw2-xtensa.c \ - $(srcdir)/unwind-dw2-fde.c $(srcdir)/unwind-sjlj.c $(srcdir)/unwind-c.c + $(srcdir)/unwind-dw2-fde-dip.c $(srcdir)/unwind-sjlj.c $(srcdir)/unwind-c.c -- 1.8.1.4