From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8561 invoked by alias); 25 Apr 2016 17:28:47 -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 8546 invoked by uid 89); 25 Apr 2016 17:28:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 spammy= X-HELO: mail-qg0-f46.google.com Received: from mail-qg0-f46.google.com (HELO mail-qg0-f46.google.com) (209.85.192.46) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 25 Apr 2016 17:28:36 +0000 Received: by mail-qg0-f46.google.com with SMTP id f74so79092372qge.2 for ; Mon, 25 Apr 2016 10:28:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version; bh=ifRw5kcJW8t6UCjkaIHf5fQYVY12SHpQYu2YuruYBTI=; b=bI56ktDgGutace9+sZVRrembbrauLFYNziq7MdD81BnMzbsmeBY633JxX2h04hHA46 3FZBwZ8nyIA6P3lk/pmyTDaB9fSrzhDbdrS7PVt4lVqUAeI4tFvoY/S/vm38A/YwFrBi VtJZu1zR2m+LCuisfcMC9a0F/9ZiLXBG7mkJxJzesjPeMqcQYXjnbUMTXeLa+5Fv8klH xfT8ggvfIey5qisvFKFOM1hJhNEAohj36toUs/KGlFWlVOS07qMApvx3sRjzDhWnIoPJ JeRHIM58yeeRD0zfyyjk3otsHSdB5KjWAsLBh1cGD+MbqACwE2xqM4o+fTjykR2GyV4v 4irg== X-Gm-Message-State: AOPr4FUBa1ilX4V4V+ht4LLjb8XJw3RopslvHYqc/jgRnAkRxZB8GnkUwRvzBPqSa+KWJoGF X-Received: by 10.140.101.145 with SMTP id u17mr35192323qge.59.1461605314140; Mon, 25 Apr 2016 10:28:34 -0700 (PDT) Received: from [192.168.1.50] (209-6-90-240.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com. [209.6.90.240]) by smtp.gmail.com with ESMTPSA id a22sm7488183qge.31.2016.04.25.10.28.33 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 25 Apr 2016 10:28:33 -0700 (PDT) To: gcc-patches List , Jakub Jelinek From: Jason Merrill Subject: RFA: PATCH to tell gdb to skip over is-a.h inlines Message-ID: <571E53C0.7040904@redhat.com> Date: Mon, 25 Apr 2016 17:28:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.1 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------020805040504020007090404" X-IsSubscribed: yes X-SW-Source: 2016-04/txt/msg01401.txt.bz2 This is a multi-part message in MIME format. --------------020805040504020007090404 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-length: 93 There doesn't seem to be any need to step through the is-a inline functions. OK for trunk? --------------020805040504020007090404 Content-Type: text/x-patch; name="skip-is-a.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="skip-is-a.diff" Content-length: 603 commit 1b74375b17e37ab7c5f96944148ff5a6bff3f8bc Author: Jason Merrill Date: Wed Apr 20 10:21:02 2016 -0400 * gdbinit.in: Skip is-a.h. diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in index af7d51a..d221130 100644 --- a/gcc/gdbinit.in +++ b/gcc/gdbinit.in @@ -246,6 +246,9 @@ set check type off # See https://sourceware.org/gdb/current/onlinedocs/gdb/Skipping-Over-Functions-and-Files.html skip file tree.h +# Also skip inline functions in is-a.h. +skip file is-a.h + # Likewise, skip various inline functions in rtl.h. skip rtx_expr_list::next skip rtx_expr_list::element --------------020805040504020007090404--