From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26013 invoked by alias); 28 Apr 2012 07:36:26 -0000 Received: (qmail 25920 invoked by uid 22791); 28 Apr 2012 07:36:25 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO sourceware.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 28 Apr 2012 07:36:12 +0000 From: "jens.elmenthaler at me dot com" To: gdb-prs@sourceware.org Subject: [Bug mi/14030] New: No children returned for unitialized pointer to class Date: Sat, 28 Apr 2012 07:36:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: mi X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jens.elmenthaler at me dot com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gdb-prs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-prs-owner@sourceware.org X-SW-Source: 2012-q2/txt/msg00053.txt.bz2 http://sourceware.org/bugzilla/show_bug.cgi?id=14030 Bug #: 14030 Summary: No children returned for unitialized pointer to class Product: gdb Version: HEAD Status: NEW Severity: normal Priority: P2 Component: mi AssignedTo: unassigned@sourceware.org ReportedBy: jens.elmenthaler@me.com Classification: Unclassified I have the following set of source/header files: // ClassUnderTest.hpp class ClassUnderTest { public: ClassUnderTest(); virtual ~ClassUnderTest(); bool mTrue; int mFifteen; }; // ClassUnderTest.cpp #include "ClassUnderTest.hpp" ClassUnderTest::ClassUnderTest() : mTrue(true), mFifteen(15) { } ClassUnderTest::~ClassUnderTest() { } // client.cpp void client() { ClassUnderTest *pCUT= new ClassUnderTest; // breakpoint here -> 0 children, stepping to next line does not help delete pCUT; // breakpoint here -> OK pCUT = 0; } If I set a breakpoint at the first line in client(), pCUT has no children, and also stepping over this line will not yield the children. If I set the breakpoint to the second line, i.e. pCUT is initialized already, I get the expected children. It seems to be relevant that client() and the implementation of ClassUnderTest's methods are in separate source files. If I implement the methods in ClassUnderTest.hpp, or move client() into ClassUnderTest.cpp, everything works properly again. I use a gcc 4.1.2. This seems to be related to the changes for bug 376901, which now rely on the type information of the value instead of target type information calculated on the fly (get_target_type()). -- 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.