mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
* ppc-linux-nat.c (create_watchpoint_request): Only use ranged
watchpoints when supported.
This commit is contained in:
parent
4ac39b9724
commit
f16c4e8bdd
@ -1,3 +1,8 @@
|
||||
2011-12-21 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* ppc-linux-nat.c (create_watchpoint_request): Only use ranged
|
||||
watchpoints when supported.
|
||||
|
||||
2011-12-21 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||
|
||||
* symfile.c (objfilep): New typedef and new DEF_VEC_P.
|
||||
|
@ -2010,7 +2010,8 @@ create_watchpoint_request (struct ppc_hw_breakpoint *p, CORE_ADDR addr,
|
||||
int len, int rw, struct expression *cond,
|
||||
int insert)
|
||||
{
|
||||
if (len == 1)
|
||||
if (len == 1
|
||||
|| !(booke_debug_info.features & PPC_DEBUG_FEATURE_DATA_BP_RANGE))
|
||||
{
|
||||
int use_condition;
|
||||
CORE_ADDR data_value;
|
||||
|
Loading…
Reference in New Issue
Block a user