From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd32.google.com (mail-io1-xd32.google.com [IPv6:2607:f8b0:4864:20::d32]) by sourceware.org (Postfix) with ESMTPS id AD2823857419 for ; Mon, 16 May 2022 15:01:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AD2823857419 Received: by mail-io1-xd32.google.com with SMTP id e3so16187354ios.6 for ; Mon, 16 May 2022 08:01:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=xqS27E37Pg7PhnUxobtd9Wgghz3FEmZ5V9CV6zX+KLc=; b=1oCFpJy/06W9FxBq4WeuxX2cd4III9cpj3IS2padEvQosc5ibu5v0FsZ0NW9oYgdYO OFpzqE8HtTnvRQxE2SqRlcHCSa4sMzhqA3GE3hLFroOUziKledPyM4lmdPj3S+dtLwS/ NDu/Y0h2wlfJ30Ve6CzfXcKHr3GVSKtU7Z1d/xFklxYVvdTNB4dw0+im/mzICR+aFS/R vKGspAiwqh/6u+H7F/PG6vrZ4TSNb2avNazh/weEzT75cClWbBDM7VOQhd5KNZacl7FP XBom6YVPKGXf94P6x82XEJKHb/13EiZT85oFPWCFAAms6GeeLsJfq4uXYDLslr4waO6t NBIg== X-Gm-Message-State: AOAM533D8z2rwLKJ4CohijcIh8Jo7KW0ACn6YAzCl4p29EibYFgrDhdG FjUJDQSsNx86n0dxd5xBBUiNsg== X-Google-Smtp-Source: ABdhPJw7K+9SHgexsFD4U+rg941bvfggbPMdxsxNu4ZdyaMJJjDab7D7/tRWLnV6TMxig2qweEcG2g== X-Received: by 2002:a05:6638:270b:b0:32b:d0c5:9c79 with SMTP id m11-20020a056638270b00b0032bd0c59c79mr9824738jav.297.1652713292583; Mon, 16 May 2022 08:01:32 -0700 (PDT) Received: from murgatroyd (71-211-158-194.hlrn.qwest.net. [71.211.158.194]) by smtp.gmail.com with ESMTPSA id o13-20020a056638124d00b0032e30453802sm938317jas.47.2022.05.16.08.01.31 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 16 May 2022 08:01:32 -0700 (PDT) From: Tom Tromey To: Tom Tromey via Gdb-patches Cc: Tom Tromey Subject: Re: [PATCH] Fix Ada exception regression on Windows References: <20220509160252.2246475-1-tromey@adacore.com> X-Attribution: Tom Date: Mon, 16 May 2022 09:01:31 -0600 In-Reply-To: <20220509160252.2246475-1-tromey@adacore.com> (Tom Tromey via Gdb-patches's message of "Mon, 9 May 2022 10:02:52 -0600") Message-ID: <8735h9h67o.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2022 15:01:37 -0000 >>>>> "Tom" == Tom Tromey via Gdb-patches writes: Tom> The breakpoint c++-ification series introduced another bug in Ada -- Tom> it caused "catch exception" and related commands to fail on Windows. Tom> The problem is that the re_set method calls the wrong superclass Tom> method, so the breakpoint doesn't get correctly re-set when the Tom> runtime offsets change. This patch fixes the problem. I'm checking this in. Tom