public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance
       [not found] <20070802205801.9399.jlevine@cadence.com>
@ 2009-09-02 13:16 ` cmoller at redhat dot com
  2009-09-02 13:17 ` cmoller at redhat dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: cmoller at redhat dot com @ 2009-09-02 13:16 UTC (permalink / raw)
  To: gdb-prs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at sourceware dot|cmoller at redhat dot com
                   |org                         |


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

------- 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] 4+ messages in thread

* [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance
       [not found] <20070802205801.9399.jlevine@cadence.com>
  2009-09-02 13:16 ` [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance cmoller at redhat dot com
@ 2009-09-02 13:17 ` cmoller at redhat dot com
  2009-12-10 20:57 ` cvs-commit at gcc dot gnu dot org
  2009-12-10 21:06 ` cmoller at redhat dot com
  3 siblings, 0 replies; 4+ messages in thread
From: cmoller at redhat dot com @ 2009-09-02 13:17 UTC (permalink / raw)
  To: gdb-prs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cmoller at redhat dot com


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

------- 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] 4+ messages in thread

* [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance
       [not found] <20070802205801.9399.jlevine@cadence.com>
  2009-09-02 13:16 ` [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance cmoller at redhat dot com
  2009-09-02 13:17 ` cmoller at redhat dot com
@ 2009-12-10 20:57 ` cvs-commit at gcc dot gnu dot org
  2009-12-10 21:06 ` cmoller at redhat dot com
  3 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2009-12-10 20:57 UTC (permalink / raw)
  To: gdb-prs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2009-12-10 20:57 -------
Subject: Bug 9399

CVSROOT:	/cvs/src
Module name:	src
Changes by:	cmoller@sourceware.org	2009-12-10 20:57:11

Modified files:
	gdb            : ChangeLog MAINTAINERS valops.c 
	gdb/testsuite  : ChangeLog 
	gdb/testsuite/gdb.cp: Makefile.in 
Added files:
	gdb/testsuite/gdb.cp: virtfunc2.cc virtfunc2.exp 

Log message:
	Fix for PR 9399 gdb can't call or print a const function that uses virtual inheritance

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.11141&r2=1.11142
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/MAINTAINERS.diff?cvsroot=src&r1=1.431&r2=1.432
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/valops.c.diff?cvsroot=src&r1=1.229&r2=1.230
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/testsuite/ChangeLog.diff?cvsroot=src&r1=1.2047&r2=1.2048
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.cp/virtfunc2.cc.diff?cvsroot=src&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.cp/virtfunc2.exp.diff?cvsroot=src&r1=NONE&r2=1.1
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.cp/Makefile.in.diff?cvsroot=src&r1=1.6&r2=1.7



-- 


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

------- 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] 4+ messages in thread

* [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance
       [not found] <20070802205801.9399.jlevine@cadence.com>
                   ` (2 preceding siblings ...)
  2009-12-10 20:57 ` cvs-commit at gcc dot gnu dot org
@ 2009-12-10 21:06 ` cmoller at redhat dot com
  3 siblings, 0 replies; 4+ messages in thread
From: cmoller at redhat dot com @ 2009-12-10 21:06 UTC (permalink / raw)
  To: gdb-prs


------- Additional Comments From cmoller at redhat dot com  2009-12-10 21:06 -------
Problem was unnecessary casting in valops.c:value_cast_struct resulting in an
attempt to dereference a null resulting from a  value_zero.  Fix was to return
NULL if the type names are non-null and match.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |7.1


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

------- 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] 4+ messages in thread

end of thread, other threads:[~2009-12-10 21:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20070802205801.9399.jlevine@cadence.com>
2009-09-02 13:16 ` [Bug c++/9399] gdb can't call or print a const function that uses virtual inheritance cmoller at redhat dot com
2009-09-02 13:17 ` cmoller at redhat dot com
2009-12-10 20:57 ` cvs-commit at gcc dot gnu dot org
2009-12-10 21:06 ` cmoller at redhat dot com

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