public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/12883] New: watchpoint on variable in function scope
@ 2011-06-13 18:19 saugustine at google dot com
  2023-12-31 12:11 ` [Bug gdb/12883] " ssbssa at sourceware dot org
  0 siblings, 1 reply; 2+ messages in thread
From: saugustine at google dot com @ 2011-06-13 18:19 UTC (permalink / raw)
  To: gdb-prs

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

           Summary: watchpoint on variable in function scope
           Product: gdb
           Version: unknown
            Status: NEW
          Severity: normal
          Priority: P2
         Component: gdb
        AssignedTo: unassigned@sourceware.org
        ReportedBy: saugustine@google.com


Given the following program:

void foo() {
   static int i=0;
   ++i;
}
int main(int argc, char **argv) {
   foo();
   return 0;
}

Setting a watchpoint on foo::i works if the program is compiled as a C program,
but fails if the program is compiled as C++.

Not sure what the proper behavior is, but probably should be consistent from C
to C++.

$ gcc ~/bar.c -g
$ ./gdb ./a.out
GNU gdb (GDB) 7.2.90.20110513-cvs
...
(gdb) watch foo::i
Watchpoint 1: foo::i
(gdb) run
Starting program: ./a.out
Hardware watchpoint 1: foo::i

Old value = 0
New value = 1
foo () at /home/saugustine/bar.c:4
4       }

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

end of thread, other threads:[~2023-12-31 12:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-13 18:19 [Bug gdb/12883] New: watchpoint on variable in function scope saugustine at google dot com
2023-12-31 12:11 ` [Bug gdb/12883] " ssbssa at sourceware dot org

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