This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [RFA] breakpoint/12803
- From: Tom Tromey <tromey at redhat dot com>
- To: Keith Seitz <keiths at redhat dot com>
- Cc: gdb-patches at sourceware dot org
- Date: Tue, 24 May 2011 14:06:39 -0600
- Subject: Re: [RFA] breakpoint/12803
- References: <4DDC0053.1020202@redhat.com>
>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
Keith> This patch addresses breakpoint/12803, which deals with C++ minsym
Keith> methods involving "const" and/or "volatile" attributes. keep_name_info
Keith> was being guarded by current_language, and this caused a regression
Keith> against gdb 7.1.
Thanks.
Keith> + while (isspace (*p))
Keith> + ++p;
`p = skip_spaces (p)'
Ok with this change.
Tom