From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 107785 invoked by alias); 27 May 2015 20:28:37 -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 107775 invoked by uid 89); 27 May 2015 20:28:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-ob0-f170.google.com Received: from mail-ob0-f170.google.com (HELO mail-ob0-f170.google.com) (209.85.214.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Wed, 27 May 2015 20:28:36 +0000 Received: by obew15 with SMTP id w15so17081904obe.1 for ; Wed, 27 May 2015 13:28:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=r+GLt+xqTZ5Hb0NNTISY2Ac7htgJlo+6ZC8GL/cSrMw=; b=LfaFL8a6DKgHB35JmUu76+cKBkBWred4C8sHGOCDbZ+XDTU0GATGXkp51TVITXrD2J bHucEwttat64Bihjyaq6bqWk24/2MLy/lDYNaAkim9yxmQ4SpOqkqunOv1XZZY0h74XP qezcBMfGmBWZ/8J/iZkhp2e9B7nHe9GjdSja9+h2pLGooSryYubU3RVLax/nh5pCWUVV ysUHf2kmfjZIxPS3E5ODCMlC0WlPBNzd+5mM05z2l1dFPbPCGnGTUavJxxloJXCEyXlD S66yZ8a45L5yNPWB8xTYWVlTn/QzMlZJig/epYw2Iltz1PpsorsjfRLqhQFs2cQfwJ7l XO9Q== X-Gm-Message-State: ALoCoQkZuXfTe/9wYqc+PvSEsS+9HS6g66JGgWz2bxAkE5QBm8EYYKonGW+GzsgAY2ffDpiG+Jnx MIME-Version: 1.0 X-Received: by 10.202.226.80 with SMTP id z77mr17872229oig.64.1432758514036; Wed, 27 May 2015 13:28:34 -0700 (PDT) Received: by 10.182.89.99 with HTTP; Wed, 27 May 2015 13:28:33 -0700 (PDT) In-Reply-To: References: Date: Wed, 27 May 2015 20:28:00 -0000 Message-ID: Subject: Re: [PATCH 3/6] DWARF Two Level Line Tables: check_line_address From: Doug Evans To: gdb-patches Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg00669.txt.bz2 On Thu, Mar 12, 2015 at 1:03 PM, Doug Evans wrote: > Hi. > > This patch just factors out the checking of a line address > to improve the S/N ratio of the calling function. > > 2015-03-12 Doug Evans > > * dwarf2read.c (record_line_ftype): New typedef. > (check_line_address): New function. > (dwarf_decode_lines_1): Call it. Committed.