public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* RFA: PATCH to tell gdb to skip over is-a.h inlines
@ 2016-04-25 17:28 Jason Merrill
  2016-04-25 17:30 ` Jeff Law
  2016-04-28 19:04 ` Jason Merrill
  0 siblings, 2 replies; 4+ messages in thread
From: Jason Merrill @ 2016-04-25 17:28 UTC (permalink / raw)
  To: gcc-patches List, Jakub Jelinek

[-- Attachment #1: Type: text/plain, Size: 93 bytes --]

There doesn't seem to be any need to step through the is-a inline 
functions.  OK for trunk?

[-- Attachment #2: skip-is-a.diff --]
[-- Type: text/x-patch, Size: 603 bytes --]

commit 1b74375b17e37ab7c5f96944148ff5a6bff3f8bc
Author: Jason Merrill <jason@redhat.com>
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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: RFA: PATCH to tell gdb to skip over is-a.h inlines
  2016-04-25 17:28 RFA: PATCH to tell gdb to skip over is-a.h inlines Jason Merrill
@ 2016-04-25 17:30 ` Jeff Law
  2016-04-28 19:04 ` Jason Merrill
  1 sibling, 0 replies; 4+ messages in thread
From: Jeff Law @ 2016-04-25 17:30 UTC (permalink / raw)
  To: Jason Merrill, gcc-patches List, Jakub Jelinek

On 04/25/2016 11:28 AM, Jason Merrill wrote:
> There doesn't seem to be any need to step through the is-a inline
> functions.  OK for trunk?
Yes, please :-)
jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: RFA: PATCH to tell gdb to skip over is-a.h inlines
  2016-04-25 17:28 RFA: PATCH to tell gdb to skip over is-a.h inlines Jason Merrill
  2016-04-25 17:30 ` Jeff Law
@ 2016-04-28 19:04 ` Jason Merrill
  2017-10-31 17:22   ` Jason Merrill
  1 sibling, 1 reply; 4+ messages in thread
From: Jason Merrill @ 2016-04-28 19:04 UTC (permalink / raw)
  To: gcc-patches List

[-- Attachment #1: Type: text/plain, Size: 171 bytes --]

On 04/25/2016 01:28 PM, Jason Merrill wrote:
> There doesn't seem to be any need to step through the is-a inline
> functions.  OK for trunk?

Likewise line-map.h.

Jason


[-- Attachment #2: line-map.diff --]
[-- Type: text/x-patch, Size: 532 bytes --]

commit 59d1faf71bda301f6ac608534d3a7208f99cb8a5
Author: Jason Merrill <jason@redhat.com>
Date:   Mon Apr 25 21:45:33 2016 -0400

    	* gdbinit.in: Skip line-map.h.

diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in
index d221130..041c716 100644
--- a/gcc/gdbinit.in
+++ b/gcc/gdbinit.in
@@ -249,6 +249,9 @@ skip file tree.h
 # Also skip inline functions in is-a.h.
 skip file is-a.h
 
+# And line-map.h.
+skip file line-map.h
+
 # Likewise, skip various inline functions in rtl.h.
 skip rtx_expr_list::next
 skip rtx_expr_list::element

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: RFA: PATCH to tell gdb to skip over is-a.h inlines
  2016-04-28 19:04 ` Jason Merrill
@ 2017-10-31 17:22   ` Jason Merrill
  0 siblings, 0 replies; 4+ messages in thread
From: Jason Merrill @ 2017-10-31 17:22 UTC (permalink / raw)
  To: gcc-patches List

[-- Attachment #1: Type: text/plain, Size: 269 bytes --]

On Thu, Apr 28, 2016 at 3:04 PM, Jason Merrill <jason@redhat.com> wrote:
> On 04/25/2016 01:28 PM, Jason Merrill wrote:
>>
>> There doesn't seem to be any need to step through the is-a inline
>> functions.  OK for trunk?
>
> Likewise line-map.h.

And timevar.h.

Jason

[-- Attachment #2: skip-timevar.diff --]
[-- Type: text/plain, Size: 544 bytes --]

commit b2476880463deb5da5547dfb50eafe4d1a38cf64
Author: Jason Merrill <jason@redhat.com>
Date:   Fri Oct 20 16:11:39 2017 -0400

            * gdbinit.in: Skip over inlines from timevar.h.

diff --git a/gcc/gdbinit.in b/gcc/gdbinit.in
index be56b0ee25b..3e1279e5b2a 100644
--- a/gcc/gdbinit.in
+++ b/gcc/gdbinit.in
@@ -252,6 +252,9 @@ skip file is-a.h
 # And line-map.h.
 skip file line-map.h
 
+# And timevar.h.
+skip file timevar.h
+
 # Likewise, skip various inline functions in rtl.h.
 skip rtx_expr_list::next
 skip rtx_expr_list::element

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-10-31 17:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-25 17:28 RFA: PATCH to tell gdb to skip over is-a.h inlines Jason Merrill
2016-04-25 17:30 ` Jeff Law
2016-04-28 19:04 ` Jason Merrill
2017-10-31 17:22   ` Jason Merrill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).