This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug breakpoints/12803] New: Regression: const/volatile methodfunctions linespec `break'


http://sourceware.org/bugzilla/show_bug.cgi?id=12803

           Summary: Regression: const/volatile method functions linespec
                    `break'
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: breakpoints
        AssignedTo: unassigned@sourceware.org
        ReportedBy: jan.kratochvil@redhat.com
                CC: keiths@redhat.com


==> 8.h <==
class C {
public:
  void m () const;
  void n () volatile;
};
==> 8.C <==
#include "8.h"
C c;
int main () {
  c.m ();
  c.n ();
}
==> 8b.C <==
#include "8.h"
void C::m () const { }
void C::n () volatile { }

g++ -o 8b.o -c 8b.C -Wall; g++ -o 8 8.C 8b.o -Wall -g
# gcc-c++-4.6.0-7.fc15.x86_64

42284fdf9d8cdb20c8e833bdbdb2b56977fea525^ (pre-physname GDB)
(gdb) b 'C::m() const' 
Breakpoint 1 at 0x4004f8
(gdb) b 'C::n() volatile' 
Breakpoint 2 at 0x400502

42284fdf9d8cdb20c8e833bdbdb2b56977fea525 (physname GDB)
d55b1ed48098d6e48b569b5e123f2c7a8e2ea3f8 (FSF GDB HEAD)
(gdb) b 'C::m() const' 
the class C does not have any method named m() const
Hint: try 'C::m() const<TAB> or 'C::m() const<ESC-?>
(Note leading single quote.)
(gdb) b 'C::n() volatile' 
the class C does not have any method named n()
Hint: try 'C::n() volatile<TAB> or 'C::n() volatile<ESC-?>
(Note leading single quote.)

This is a physname regression.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]