public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/13483] New: gdb not taking 0 for pointer and boolean values
@ 2011-12-07 19:36 dnovillo at google dot com
  2011-12-07 20:15 ` [Bug gdb/13483] " keiths at redhat dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: dnovillo at google dot com @ 2011-12-07 19:36 UTC (permalink / raw)
  To: gdb-prs

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

             Bug #: 13483
           Summary: gdb not taking 0 for pointer and boolean values
           Product: gdb
           Version: unknown
            Status: NEW
          Severity: normal
          Priority: P2
         Component: gdb
        AssignedTo: unassigned@sourceware.org
        ReportedBy: dnovillo@google.com
    Classification: Unclassified


I'm debugging cc1plus from GCC trunk (as of 2-3 weeks ago).  I'm trying to make
an inferior call to the function libcpp/line-map.c:linemap_dump:

1160    void
1161    linemap_dump (FILE *stream, struct line_maps *set, unsigned ix, bool
is_macro)


(gdb) call linemap_dump(0,line_table,ix,0)
Cannot resolve function linemap_dump to any overloaded instance

But if I use typecasts, it works:

(gdb) call linemap_dump((FILE *)0,line_table,ix,(bool)0)
Map #0 [0x7ffff7fc2000] - LOC: 2 - REASON: LC_ENTER - SYSP: no
File: /usr/include/bits/posix1_lim.h:1
Included from: [-1] None

I suppose this is intended behaviour, but it is rather irritating.  There is
exactly one linemap_dump function, and I would expect 0 to be trivially
convertible to those types:

(gdb) l linemap_dum<TAB>
linemap_dump(_IO_FILE*, line_maps*, unsigned int, bool)
linemap_dump_location(line_maps*, unsigned int, _IO_FILE*)


Thanks.  Diego.

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

end of thread, other threads:[~2012-09-12 18:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-07 19:36 [Bug gdb/13483] New: gdb not taking 0 for pointer and boolean values dnovillo at google dot com
2011-12-07 20:15 ` [Bug gdb/13483] " keiths at redhat dot com
2011-12-07 20:19 ` dnovillo at google dot com
2012-09-10 17:13 ` cvs-commit at gcc dot gnu.org
2012-09-12 18:44 ` keiths 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).