Changeset 280a27e in mainline for arch/mips32/src/debugger.c
- Timestamp:
- 2006-04-16T13:16:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 50de918
- Parents:
- c624b96
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/debugger.c
rc624b96 r280a27e 243 243 if (breakpoints[i].address) { 244 244 symbol = get_symtab_entry(breakpoints[i].address); 245 printf("%d. 0x%p in %s\n",i,245 printf("%d. %p in %s\n",i, 246 246 breakpoints[i].address, symbol); 247 247 printf(" Count(%d) ", breakpoints[i].counter); … … 329 329 330 330 if (!(cur->flags & BKPOINT_FUNCCALL)) 331 printf("***Breakpoint %d: 0x%p in %s.\n", i,331 printf("***Breakpoint %d: %p in %s.\n", i, 332 332 fireaddr, get_symtab_entry(istate->epc)); 333 333 … … 342 342 cur->flags |= BKPOINT_INPROG; 343 343 } else { 344 printf("***Breakpoint 0x%p in %s.\n", fireaddr,344 printf("***Breakpoint %p in %s.\n", fireaddr, 345 345 get_symtab_entry(fireaddr)); 346 346 /* Move on to next instruction */
Note:
See TracChangeset
for help on using the changeset viewer.