public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/11098] New: g++ doesn't emit complete debugging information for local variables in destructors
@ 2003-06-05  7:27 mvanier@cs.caltech.edu
  2003-06-22 13:13 ` [Bug c++/11098] " pinskia at physics dot uc dot edu
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: mvanier@cs.caltech.edu @ 2003-06-05  7:27 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11098

           Summary: g++ doesn't emit complete debugging information for
                    local variables in destructors
           Product: gcc
           Version: 3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: mvanier@cs.caltech.edu
                CC: gcc-bugs@gcc.gnu.org

Consider this code (in the file "foo.cc"):

// Begin code:
class Test {
private:
    int *data;
public:
    Test();
    ~Test();
};

Test::Test() {
    data = new int[1000];
}

Test::~Test() {
    int *t = data;
    delete [] t;
}


int main() {
    Test s;
    return 0;
}
// End code.

When I compile this with "g++ -Wall -g foo.cc -o foo" and then bring up gdb 5.3
and set a breakpoint in the destructor, this happens:

[tap] gdb foo
GNU gdb 5.3
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...
(gdb) break Test::~Test()
Breakpoint 1 at 0x80484c6: file foo.cc, line 13.
(gdb) run
Starting program: /home/mvanier/tmp/cs11/foo 

Breakpoint 1, ~Test (this=0xbfffee30) at foo.cc:14
14          int *t = data;
(gdb) p t
No symbol "t" in current context.
(gdb) info locals
No locals.
(gdb) 

Clearly this is wrong, as "t" is a local variable in the destructor.

I sent in a bug report to the gdb developers, and they say that the reason this
is happening is that g++ is not outputting the correct debugging information.
They tell me I should refer you to bugs debug/10156 in the gcc GNATS database
and c++/1234 in the gdb GNATS database (the latter being the one I submitted).
Thanks in advance for your help.



------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

end of thread, other threads:[~2003-09-03  6:07 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-05  7:27 [Bug c++/11098] New: g++ doesn't emit complete debugging information for local variables in destructors mvanier@cs.caltech.edu
2003-06-22 13:13 ` [Bug c++/11098] " pinskia at physics dot uc dot edu
2003-07-05 15:45 ` [Bug c++/11098] [3.3./3.4 regression] [dwarf2] " pinskia at physics dot uc dot edu
2003-07-14 22:22 ` [Bug debug/11098] " mmitchel at gcc dot gnu dot org
2003-07-15  1:04 ` cvs-commit at gcc dot gnu dot org
2003-07-15  1:05 ` cvs-commit at gcc dot gnu dot org
2003-07-15  1:06 ` mmitchel at gcc dot gnu dot org
2003-07-15  1:12 ` mmitchel at gcc dot gnu dot org
2003-09-03  6:07 ` pinskia at gcc dot gnu dot org

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).