diff options
author | Tim Newsome <tim@sifive.com> | 2017-06-06 11:42:08 -0700 |
---|---|---|
committer | Palmer Dabbelt <palmer@dabbelt.com> | 2017-06-06 11:51:15 -0700 |
commit | 11008baee3c5e9b10056b28d5b1aac86e7eef37c (patch) | |
tree | fb74c00c101fed8531a38c3329e2f735d19325ab /src/target | |
parent | 83afb930046728fead3ee47375ce692581b085e5 (diff) | |
download | riscv-openocd-11008baee3c5e9b10056b28d5b1aac86e7eef37c.zip riscv-openocd-11008baee3c5e9b10056b28d5b1aac86e7eef37c.tar.gz riscv-openocd-11008baee3c5e9b10056b28d5b1aac86e7eef37c.tar.bz2 |
%p already includes 0x (on gcc)
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/riscv/program.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/riscv/program.c b/src/target/riscv/program.c index 1487316..6f7b10b 100644 --- a/src/target/riscv/program.c +++ b/src/target/riscv/program.c @@ -17,7 +17,7 @@ int riscv_program_lal(struct riscv_program *p, enum gdb_regno d, riscv_addr_t ad /* Program interface. */ int riscv_program_init(struct riscv_program *p, struct target *target) { - LOG_DEBUG("riscv_program_init: p=0x%p", p); + LOG_DEBUG("riscv_program_init: p=%p", p); memset(p, 0, sizeof(*p)); p->target = target; @@ -73,13 +73,13 @@ int riscv_program_exec(struct riscv_program *p, struct target *t) } for (size_t i = 0; i < riscv_debug_buffer_size(p->target); ++i) { - LOG_DEBUG("Executing program 0x%p: debug_buffer[%02x] = DASM(0x%08lx)", p, (int)i, (long)p->debug_buffer[i]); + LOG_DEBUG("Executing program %p: debug_buffer[%02x] = DASM(0x%08lx)", p, (int)i, (long)p->debug_buffer[i]); if (i <= p->instruction_count || i >= riscv_debug_buffer_size(p->target) - p->data_count) riscv_write_debug_buffer(t, i, p->debug_buffer[i]); } if (riscv_execute_debug_buffer(t) != ERROR_OK) { - LOG_DEBUG("Unable to execute program 0x%p", p); + LOG_DEBUG("Unable to execute program %p", p); return ERROR_FAIL; } @@ -474,7 +474,7 @@ int riscv_program_lal(struct riscv_program *p, enum gdb_regno d, riscv_addr_t ad int riscv_program_insert(struct riscv_program *p, riscv_insn_t i) { - LOG_DEBUG("instruction_count: %d (p=0x%p)", (int)p->instruction_count, p); + LOG_DEBUG("instruction_count: %d (p=%p)", (int)p->instruction_count, p); if (p->instruction_count + p->data_count + 1 > riscv_debug_buffer_size(p->target)) { LOG_DEBUG("Unable to insert instruction:"); |