public inbox for gdb-prs@sourceware.org help / color / mirror / Atom feed
From: "eager at eagercon dot com" <sourceware-bugzilla@sourceware.org> To: gdb-prs@sourceware.org Subject: [Bug gdb/14696] New: 'info var" incorrect Date: Wed, 10 Oct 2012 17:57:00 -0000 [thread overview] Message-ID: <bug-14696-4717@http.sourceware.org/bugzilla/> (raw) http://sourceware.org/bugzilla/show_bug.cgi?id=14696 Bug #: 14696 Summary: 'info var" incorrect Product: gdb Version: HEAD Status: NEW Severity: minor Priority: P2 Component: gdb AssignedTo: unassigned@sourceware.org ReportedBy: eager@eagercon.com Classification: Unclassified The "info var" command displays a symbol incorrectly when it is a const array of pointers. test.c: int a, b; int * const c[5] = {&a, &a, &a, &a, &a}; int const d[5] = {1, 2, 3, 4, 5}; int main(void) { *c[0] = 4; // c[1] = &b; /* Illegal assignment. */ return 0; } $ gcc -g -o test test.c $gdb test . . . (gdb) info var c All variables matching regular expression "c": File test.c: int * constc[5]; (gdb) info var d All variables matching regular expression "d": File test.c: const int d[5]; -- 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.
next reply other threads:[~2012-10-10 17:57 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2012-10-10 17:57 eager at eagercon dot com [this message] 2023-12-31 15:26 ` [Bug gdb/14696] " ssbssa at sourceware dot org
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=bug-14696-4717@http.sourceware.org/bugzilla/ \ --to=sourceware-bugzilla@sourceware.org \ --cc=gdb-prs@sourceware.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
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).