This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug gdb/12883] New: watchpoint on variable in function scope


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]