public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <bug-7935-4717@http.sourceware.org/bugzilla/>
@ 2013-06-28 19:01 ` dje at google dot com
  2013-07-30  6:40 ` b.r.longbons at gmail dot com
  2013-11-13 22:11 ` keiths at redhat dot com
  2 siblings, 0 replies; 7+ messages in thread
From: dje at google dot com @ 2013-06-28 19:01 UTC (permalink / raw)
  To: gdb-prs

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

dje at google dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
                 CC|                            |ccoutant at google dot com,
                   |                            |dje at google dot com
         Resolution|FIXED                       |---

--- Comment #5 from dje at google dot com ---
Here's another testcase.

namespace foo
{
  int x = 42;
  void baz () {}
}

namespace bar = foo;

int
main ()
{
  bar::baz ();
  return 0;
}

printing bar::x works, but setting a breakpoint on bar::baz() doesn't work.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <bug-7935-4717@http.sourceware.org/bugzilla/>
  2013-06-28 19:01 ` [Bug c++/7935] GDB doesn't know about namespace aliases dje at google dot com
@ 2013-07-30  6:40 ` b.r.longbons at gmail dot com
  2013-11-13 22:11 ` keiths at redhat dot com
  2 siblings, 0 replies; 7+ messages in thread
From: b.r.longbons at gmail dot com @ 2013-07-30  6:40 UTC (permalink / raw)
  To: gdb-prs

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

Ben Longbons <b.r.longbons at gmail dot com> changed:

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

--- Comment #6 from Ben Longbons <b.r.longbons at gmail dot com> ---
*** Bug 13384 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <bug-7935-4717@http.sourceware.org/bugzilla/>
  2013-06-28 19:01 ` [Bug c++/7935] GDB doesn't know about namespace aliases dje at google dot com
  2013-07-30  6:40 ` b.r.longbons at gmail dot com
@ 2013-11-13 22:11 ` keiths at redhat dot com
  2 siblings, 0 replies; 7+ messages in thread
From: keiths at redhat dot com @ 2013-11-13 22:11 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=7935

Keith Seitz <keiths at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
                 CC|                            |keiths at redhat dot com
           See Also|                            |https://sourceware.org/bugz
                   |                            |illa/show_bug.cgi?id=10541
         Resolution|---                         |FIXED
           Assignee|swagiaal at redhat dot com         |keiths at redhat dot com
   Target Milestone|7.2                         |7.7

--- Comment #7 from Keith Seitz <keiths at redhat dot com> ---
This is closely related to c++/10541, for which I have just committed a patch,
so I am now closing this bug. [NOTE: When I commited the patch, I had the wrong
bug# in the commit, so it didn't get attached here. Please see c++/10541 for
links to patches.]

-- 
You are receiving this mail because:
You are on the CC list for the bug.


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

* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <20021115135801.7935.carlton@math.stanford.edu>
                   ` (2 preceding siblings ...)
  2010-02-05 19:04 ` cvs-commit at gcc dot gnu dot org
@ 2010-03-13  0:39 ` tromey at redhat dot com
  3 siblings, 0 replies; 7+ messages in thread
From: tromey at redhat dot com @ 2010-03-13  0:39 UTC (permalink / raw)
  To: gdb-prs


------- Additional Comments From tromey at redhat dot com  2010-03-13 00:39 -------
Sami checked in the fix.

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


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

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

* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <20021115135801.7935.carlton@math.stanford.edu>
  2010-01-27 19:11 ` swagiaal at redhat dot com
  2010-01-27 19:12 ` tromey at redhat dot com
@ 2010-02-05 19:04 ` cvs-commit at gcc dot gnu dot org
  2010-03-13  0:39 ` tromey at redhat dot com
  3 siblings, 0 replies; 7+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2010-02-05 19:04 UTC (permalink / raw)
  To: gdb-prs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2010-02-05 19:04 -------
Subject: Bug 7935

CVSROOT:	/cvs/src
Module name:	src
Changes by:	swagiaal@sourceware.org	2010-02-05 19:03:42

Modified files:
	gdb            : ChangeLog cp-namespace.c cp-support.h 
	                 dwarf2read.c 
	gdb/testsuite  : ChangeLog 
	gdb/testsuite/gdb.cp: nsusing.exp 

Log message:
	2010-02-05  Sami Wagiaalla  <swagiaal@redhat.com>
	
	PR c++/7935:
	* gdb.cp/namespace-using.exp: Removed kfail; bug has been fixed.
	
	2010-02-05  Sami Wagiaalla  <swagiaal@redhat.com>
	
	PR c++/7935:
	* cp-support.h: Added char* alias element to using_direct data
	struct.
	(cp_add_using): Added char* alias argument.
	(cp_add_using_directive): Ditto.
	* cp-namespace.c: Updated with the above changes.
	(cp_lookup_symbol_imports): Check for aliases.
	* dwarf2read.c (read_import_statement): Figure out local alias
	for the import and pass it on to cp_add_using.
	(read_namespace): Pass alias argument to cp_add_using.

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.11330&r2=1.11331
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/cp-namespace.c.diff?cvsroot=src&r1=1.33&r2=1.34
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/cp-support.h.diff?cvsroot=src&r1=1.32&r2=1.33
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/dwarf2read.c.diff?cvsroot=src&r1=1.354&r2=1.355
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/testsuite/ChangeLog.diff?cvsroot=src&r1=1.2121&r2=1.2122
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.cp/nsusing.exp.diff?cvsroot=src&r1=1.2&r2=1.3



-- 


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

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

* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <20021115135801.7935.carlton@math.stanford.edu>
  2010-01-27 19:11 ` swagiaal at redhat dot com
@ 2010-01-27 19:12 ` tromey at redhat dot com
  2010-02-05 19:04 ` cvs-commit at gcc dot gnu dot org
  2010-03-13  0:39 ` tromey at redhat dot com
  3 siblings, 0 replies; 7+ messages in thread
From: tromey at redhat dot com @ 2010-01-27 19:12 UTC (permalink / raw)
  To: gdb-prs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
OtherBugsDependingO|                            |11211
              nThis|                            |


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

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

* [Bug c++/7935] GDB doesn't know about namespace aliases
       [not found] <20021115135801.7935.carlton@math.stanford.edu>
@ 2010-01-27 19:11 ` swagiaal at redhat dot com
  2010-01-27 19:12 ` tromey at redhat dot com
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: swagiaal at redhat dot com @ 2010-01-27 19:11 UTC (permalink / raw)
  To: gdb-prs



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


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

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

end of thread, other threads:[~2013-11-13 22:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-7935-4717@http.sourceware.org/bugzilla/>
2013-06-28 19:01 ` [Bug c++/7935] GDB doesn't know about namespace aliases dje at google dot com
2013-07-30  6:40 ` b.r.longbons at gmail dot com
2013-11-13 22:11 ` keiths at redhat dot com
     [not found] <20021115135801.7935.carlton@math.stanford.edu>
2010-01-27 19:11 ` swagiaal at redhat dot com
2010-01-27 19:12 ` tromey at redhat dot com
2010-02-05 19:04 ` cvs-commit at gcc dot gnu dot org
2010-03-13  0:39 ` tromey 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).