From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 736 invoked by alias); 1 Dec 2019 20:46:45 -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 728 invoked by uid 89); 1 Dec 2019 20:46:45 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-4.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.1 spammy=moved X-HELO: EUR01-DB5-obe.outbound.protection.outlook.com Received: from mail-oln040092064023.outbound.protection.outlook.com (HELO EUR01-DB5-obe.outbound.protection.outlook.com) (40.92.64.23) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 01 Dec 2019 20:46:44 +0000 ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=DWlQLFJIZ1pxXGJZNur8SVvhx59MusbblvPKTobUqX2HgXVKJBdG+QLqFoU2bIqA2LgAl9GpcWLyu9ZXqVyAZHKls0evebmqxzwnQPoVI0H9lVA1gkSrgksk4Ace4tWxR/lUmQG4FTpMg/cYLWsO+PZKSnxp/heU2WLqANqTUNiI2hfsLsF4XYlJxj/JSBG5/9Lmu3SqpYtH8JAfp1f/UvARcFQX3+HOotrymfU5uVACBbiyI4T4gS53kxVdk85cUAKLM4dBC2ln8m45DiVLKWQ12lQMaR/dpRdCrizZRqaMOE4FxXAw3dxDKmueCLbzSRMS1nbPJMFWHcSed5Mu5Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=+k29o/HQvWQ+bvfNbxAgvVdAk90Mxo7XRApx3hn9/fA=; b=hcr/MHYjgicYfhmBzIyjv8+0OHkNL1f9BheW/n7MMyhX6P9U+NGv+0Rzm/2R16tRoVYC8jhfJWFgqaOhZx34UyX1YFSeU8de1iDjDyoQ41Ti6KcApu7w1iMKzlL71vcn4JmWxJXmaQm1KSX8uAjEEPWG5VSzTc1UPVBRugHm8erRkZFPfdUp30S8OYeFuA6qZnpTtqLniPVfVC0Gr8GlwJ++WTbjtSHse7rGkLMXWf8TNcXHMt37N+7Kvumxuj6i/0SGoBLysmV325bgBPrsdUUzd3ZsUkzJbbZHIHpxnv0UQlFi9Eva78SEchkOolTbDwDEFE//vkycrlyE2ugBtw== ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none Received: from DB5EUR01FT050.eop-EUR01.prod.protection.outlook.com (10.152.4.51) by DB5EUR01HT082.eop-EUR01.prod.protection.outlook.com (10.152.5.181) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.2495.18; Sun, 1 Dec 2019 20:46:42 +0000 Received: from VI1PR08MB5325.eurprd08.prod.outlook.com (10.152.4.59) by DB5EUR01FT050.mail.protection.outlook.com (10.152.5.82) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.2495.18 via Frontend Transport; Sun, 1 Dec 2019 20:46:41 +0000 Received: from VI1PR08MB5325.eurprd08.prod.outlook.com ([fe80::5861:779d:3997:2e70]) by VI1PR08MB5325.eurprd08.prod.outlook.com ([fe80::5861:779d:3997:2e70%7]) with mapi id 15.20.2495.014; Sun, 1 Dec 2019 20:46:41 +0000 From: Bernd Edlinger To: "gdb-patches@sourceware.org" Subject: [PING] [PATCH] Fix setting breakpoints or stepping on line 65535 Date: Sun, 01 Dec 2019 20:46:00 -0000 Message-ID: References: In-Reply-To: x-microsoft-original-message-id: <9651000d-14d1-f751-fcf9-d539dc960c9b@hotmail.de> x-ms-exchange-transport-forked: True Content-Type: text/plain; charset="Windows-1252" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-SW-Source: 2019-12/txt/msg00027.txt.bz2 Ping... On 11/24/19 12:54 PM, Bernd Edlinger wrote: > Hi, >=20 > this removes code that is present from the very first git revisison > 7b4ac7e1ed2c4616bce56d1760807798be87ac9e from 1988. It was in the > gdb/dbxread.c at the time (and makes more sense for dbx line info format > since line numbers are 16-bit entities in that debug format and debugging > files with more than 65535 lines would not work anyway) but moved from > there to gdb/buildsym.c which is used for dwarf line info as well, and > excluding an arbitrary line number does certainly not make sense nowadays. >=20 >=20 > Thanks > Bernd. >=20