2012-02-22 Sterling Augustine <saugustine@google.com>
PR 13689:
* breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
testsuite/ChangeLog
2012-02-22 Sterling Augustine <saugustine@google.com>
* gdb.base/watchpoint.exp (test_constant_watchpoint): Add test for
constant with cast.
+2012-02-22 Sterling Augustine <saugustine@google.com>
+
+ PR 13689:
+ * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch.
+
2012-02-22 Gary Benson <gbenson@redhat.com>
* dwarf2read.c (dwarf2_read_index): Correct misspelling.
case UNOP_COMPLEMENT:
case UNOP_ADDR:
case UNOP_HIGH:
+ case UNOP_CAST:
/* Unary, binary and ternary operators: We have to check
their operands. If they are constant, then so is the
result of that operation. For instance, if A and B are
+2012-02-22 Sterling Augustine <saugustine@google.com>
+
+ * gdb.base/watchpoint.exp (test_constant_watchpoint): Add test for
+ constant with cast.
+
2012-02-21 Pedro Alves <palves@redhat.com>
* gdb.threads/watchpoint-fork.exp (test): Use with_test_prefix.
proc test_constant_watchpoint {} {
gdb_test "watch 5" "Cannot watch constant value `5'." "number is constant"
+ gdb_test "watch (int *)5" "Cannot watch constant value `\\(int \\*\\)5'." \
+ "number with cast is constant"
gdb_test "watch marker1" "Cannot watch constant value `marker1'." \
"marker1 is constant"
gdb_test "watch count + 6" ".*atchpoint \[0-9\]+: count \\+ 6"