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/15360] New: can't step into function


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

             Bug #: 15360
           Summary: can't step into function
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: breakpoints
        AssignedTo: unassigned@sourceware.org
        ReportedBy: dje@google.com
    Classification: Unclassified


Compiling this with -g, stepping into "function" doesn't work.

(gdb) start
Temporary breakpoint 1 at 0x400508: file foo.c, line 23.
Starting program: /home/dje/src/play/a.out

Temporary breakpoint 1, main (argc=1, argv=0x7fffffffe848) at foo.c:23
23        function();
(gdb) s
[Inferior 1 (process 19896) exited normally]
(gdb) 

struct foo
{
  int i;
  ~foo(){return;};
};


int function()
{
  do{
    int i = 0;
    int j = i + 4;
    foo bar;
    if(0)
      {
        continue;
      }
    return 1;
  }while(1);
}
int main (int argc, char* argv[])
{
  function();
  return 0;
}

-- 
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]