From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2552 invoked by alias); 22 Aug 2013 15:10:58 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 2543 invoked by uid 89); 22 Aug 2013 15:10:58 -0000 X-Spam-SWARE-Status: No, score=-4.1 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_NO,SPF_SOFTFAIL autolearn=no version=3.3.2 Received: from mtaout20.012.net.il (HELO mtaout20.012.net.il) (80.179.55.166) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 22 Aug 2013 15:10:57 +0000 Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MRX00300TSEZT00@a-mtaout20.012.net.il> for gdb-patches@sourceware.org; Thu, 22 Aug 2013 18:10:52 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MRX0034BU62UV70@a-mtaout20.012.net.il>; Thu, 22 Aug 2013 18:10:50 +0300 (IDT) Date: Thu, 22 Aug 2013 15:10:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH v3] Windows x64 SEH unwinder In-reply-to: <6F12353E-D32C-40F0-87BF-AA77FC15BE03@adacore.com> To: Tristan Gingold Cc: gdb-patches@sourceware.org, brobecker@adacore.com, roland.schwingel@onevision.de, palves@redhat.com Reply-to: Eli Zaretskii Message-id: <834nahkbgj.fsf@gnu.org> References: <1357728781-15073-1-git-send-email-brobecker@adacore.com> <1357728781-15073-3-git-send-email-brobecker@adacore.com> <50ED9221.1050504@redhat.com> <9E84DF2D-7AF8-4AA1-A5DF-171EF189A6E7@adacore.com> <50EDA48E.2030406@redhat.com> <66611BA9-4536-42B2-A65C-4EA5DA219E22@adacore.com> <50EEEB3C.9050202@redhat.com> <5BE11EDB-7832-4489-8CB1-6382F5D1D34E@adacore.com> <51F29440.3030808@redhat.com> <6F12353E-D32C-40F0-87BF-AA77FC15BE03@adacore.com> X-SW-Source: 2013-08/txt/msg00643.txt.bz2 > From: Tristan Gingold > Date: Thu, 22 Aug 2013 11:33:10 +0200 > Cc: Joel Brobecker , Roland Schwingel , Pedro Alves > > after discussion with Roland Schwingel, I have found that the patch > doesn't handle well dwarf3 DW_OP_call_frame_cfa, because the SEH > unwinder is before the dwarf2 one. > > So I propose this new patch. The only change is the position of the > SEH unwinder: it is appended after the dwarf2 one. > As a consequence, old binaries should work too. > > I have also added the NEWS chunk. The NEWS part is OK. Thanks.