summaryrefslogtreecommitdiff
path: root/gdb/breakpoint.c
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>1999-10-05 23:13:56 +0000
committerJason Molenda <jmolenda@apple.com>1999-10-05 23:13:56 +0000
commit2acceee2182a942e6a79a972009540990f4dfabf (patch)
tree2ed7ca473f0b49181f1d0214c3450a7eb17f7bcb /gdb/breakpoint.c
parent3e9c42873ee1d0bbb03039baea78c617174f9269 (diff)
import gdb-1999-10-04 snapshot
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r--gdb/breakpoint.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index a6a5f4f03a..b9fdcb0a07 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -855,7 +855,8 @@ insert_breakpoints ()
/* If it's a memory location, then we must watch it. */
if (v->lval == lval_memory)
{
- int addr, len, type;
+ CORE_ADDR addr;
+ int len, type;
addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
len = TYPE_LENGTH (VALUE_TYPE (v));
@@ -1199,7 +1200,8 @@ remove_breakpoint (b, is)
at that address. */
if (v->lval == lval_memory)
{
- int addr, len, type;
+ CORE_ADDR addr;
+ int len, type;
addr = VALUE_ADDRESS (v) + VALUE_OFFSET (v);
len = TYPE_LENGTH (VALUE_TYPE (v));
@@ -2820,7 +2822,7 @@ breakpoint_1 (bnum, allflag)
register struct breakpoint *b;
register struct command_line *l;
register struct symbol *sym;
- CORE_ADDR last_addr = (CORE_ADDR) - 1;
+ CORE_ADDR last_addr = (CORE_ADDR) -1;
int found_a_breakpoint = 0;
static ep_type_description_t bptypes[] =
{
@@ -3087,7 +3089,7 @@ breakpoint_1 (bnum, allflag)
else
/* Compare against (CORE_ADDR)-1 in case some compiler decides
that a comparison of an unsigned with -1 is always false. */
- if (last_addr != (CORE_ADDR) - 1)
+ if (last_addr != (CORE_ADDR) -1)
set_next_address (last_addr);
annotate_breakpoints_table_end ();