diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-07-02 14:03:54 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-07-02 17:02:05 +0100 |
commit | 2fd0f80d57e8437d70ba79921efd3ce02e755755 (patch) | |
tree | 954beca4a215e7b6c478a7ad45dd997a9f0e0da4 /gdb/aarch64-linux-nat.c | |
parent | db49d3d0414173fe8907dcae1cab0067d46c44cd (diff) | |
download | gdb-2fd0f80d57e8437d70ba79921efd3ce02e755755.zip gdb-2fd0f80d57e8437d70ba79921efd3ce02e755755.tar.gz gdb-2fd0f80d57e8437d70ba79921efd3ce02e755755.tar.bz2 |
Fix typo in aarch64_linux_insert_hw_breakpoint
It should be "insert_hw_breakpoint" rather than "insert_hw_watchpoint".
gdb:
2015-07-02 Yao Qi <yao.qi@linaro.org>
* aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix
typo in the debugging message.
Diffstat (limited to 'gdb/aarch64-linux-nat.c')
-rw-r--r-- | gdb/aarch64-linux-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/aarch64-linux-nat.c b/gdb/aarch64-linux-nat.c index aae4853..9959b81 100644 --- a/gdb/aarch64-linux-nat.c +++ b/gdb/aarch64-linux-nat.c @@ -1207,7 +1207,7 @@ aarch64_linux_insert_hw_breakpoint (struct target_ops *self, = aarch64_get_debug_reg_state (ptid_get_pid (inferior_ptid)); aarch64_show_debug_reg_state (state, - "insert_hw_watchpoint", addr, len, type); + "insert_hw_breakpoint", addr, len, type); } return ret; |