public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug symtab/12708] New: CU expansion problem for parameters
@ 2011-04-27 18:33 jan.kratochvil at redhat dot com
  2011-04-28 16:51 ` [Bug symtab/12708] " jan.kratochvil at redhat dot com
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: jan.kratochvil at redhat dot com @ 2011-04-27 18:33 UTC (permalink / raw)
  To: gdb-prs

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

           Summary: CU expansion problem for parameters
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: symtab
        AssignedTo: unassigned@sourceware.org
        ReportedBy: jan.kratochvil@redhat.com
            Target: x86_64-unknown-linux-gnu


typedef int int_typedef;
void f (int_typedef x) {}

gcc -c -g

./gdb-clean -q -nx ./1.o -ex "complete b 'f(" -ex q
b 'f(int)

./gdb-clean -readnow -q -nx ./1.o -ex "complete b 'f(" -ex q
b 'f(int)
b 'f(int_typedef)

-readnow should never affect GDB user visible behavior.

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


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

* [Bug symtab/12708] CU expansion problem for parameters
  2011-04-27 18:33 [Bug symtab/12708] New: CU expansion problem for parameters jan.kratochvil at redhat dot com
@ 2011-04-28 16:51 ` jan.kratochvil at redhat dot com
  2011-04-28 19:52 ` jan.kratochvil at redhat dot com
  2011-05-06 13:58 ` jan.kratochvil at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: jan.kratochvil at redhat dot com @ 2011-04-28 16:51 UTC (permalink / raw)
  To: gdb-prs

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

Jan Kratochvil <jan.kratochvil at redhat dot com> changed:

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

--- Comment #1 from Jan Kratochvil <jan.kratochvil at redhat dot com> 2011-04-28 16:51:00 UTC ---
The dependency on CU expansion is a physname regression.
But the feature of originally-typed-parameters symbols was not present before
physname at all.

+ prephysname
b 'f(int)
+ prephysname -readnow
b 'f(int)

+ physname
b 'f(int)
+ physname -readnow
b 'f(int)
b 'f(int_typedef)

+ HEAD
b 'f(int)
+ HEAD -readnow
b 'f(int)
b 'f(int_typedef)

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


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

* [Bug symtab/12708] CU expansion problem for parameters
  2011-04-27 18:33 [Bug symtab/12708] New: CU expansion problem for parameters jan.kratochvil at redhat dot com
  2011-04-28 16:51 ` [Bug symtab/12708] " jan.kratochvil at redhat dot com
@ 2011-04-28 19:52 ` jan.kratochvil at redhat dot com
  2011-05-06 13:58 ` jan.kratochvil at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: jan.kratochvil at redhat dot com @ 2011-04-28 19:52 UTC (permalink / raw)
  To: gdb-prs

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

Jan Kratochvil <jan.kratochvil at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at sourceware    |jan.kratochvil at redhat
                   |dot org                     |dot com

--- Comment #2 from Jan Kratochvil <jan.kratochvil at redhat dot com> 2011-04-28 19:52:20 UTC ---
[patch] physname-related CU expansion issue for C++ (PR 12708)
http://sourceware.org/ml/gdb-patches/2011-04/msg00551.html

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


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

* [Bug symtab/12708] CU expansion problem for parameters
  2011-04-27 18:33 [Bug symtab/12708] New: CU expansion problem for parameters jan.kratochvil at redhat dot com
  2011-04-28 16:51 ` [Bug symtab/12708] " jan.kratochvil at redhat dot com
  2011-04-28 19:52 ` jan.kratochvil at redhat dot com
@ 2011-05-06 13:58 ` jan.kratochvil at redhat dot com
  2 siblings, 0 replies; 4+ messages in thread
From: jan.kratochvil at redhat dot com @ 2011-05-06 13:58 UTC (permalink / raw)
  To: gdb-prs

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

Jan Kratochvil <jan.kratochvil at redhat dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #3 from Jan Kratochvil <jan.kratochvil at redhat dot com> 2011-05-06 13:58:10 UTC ---
[commit+commit 7.3] [patch] physname-related CU expansion issue for C++ (PR
12708)
http://sourceware.org/ml/gdb-patches/2011-05/msg00185.html

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


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

end of thread, other threads:[~2011-05-06 13:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-27 18:33 [Bug symtab/12708] New: CU expansion problem for parameters jan.kratochvil at redhat dot com
2011-04-28 16:51 ` [Bug symtab/12708] " jan.kratochvil at redhat dot com
2011-04-28 19:52 ` jan.kratochvil at redhat dot com
2011-05-06 13:58 ` jan.kratochvil 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).