diff options
Diffstat (limited to 'gdb/ia64-linux-nat.c')
-rw-r--r-- | gdb/ia64-linux-nat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ia64-linux-nat.c b/gdb/ia64-linux-nat.c index b532e7a..1f82872 100644 --- a/gdb/ia64-linux-nat.c +++ b/gdb/ia64-linux-nat.c @@ -404,7 +404,7 @@ ia64_cannot_store_register (struct gdbarch *gdbarch, int regno) return regno < 0 || regno >= gdbarch_num_regs (gdbarch) || u_offsets[regno] == -1 - || regno == IA64_BSPSTORE_REGNUM; + || regno == IA64_BSPSTORE_REGNUM; } void @@ -542,7 +542,7 @@ ia64_linux_nat_target::enable_watchpoints_in_psr (ptid_t ptid) if (!(psr & IA64_PSR_DB)) { psr |= IA64_PSR_DB; /* Set the db bit - this enables hardware - watchpoints and breakpoints. */ + watchpoints and breakpoints. */ regcache_cooked_write_unsigned (regcache, IA64_PSR_REGNUM, psr); } } @@ -706,7 +706,7 @@ ia64_linux_nat_target::stopped_data_address (CORE_ADDR *addr_p) regcache_cooked_read_unsigned (regcache, IA64_PSR_REGNUM, &psr); psr |= IA64_PSR_DD; /* Set the dd bit - this will disable the watchpoint - for the next instruction. */ + for the next instruction. */ regcache_cooked_write_unsigned (regcache, IA64_PSR_REGNUM, psr); *addr_p = (CORE_ADDR) siginfo.si_addr; @@ -887,7 +887,7 @@ ia64_linux_nat_target::xfer_partial (enum target_object object, /* Probe for the table size once. */ if (gate_table_size == 0) - gate_table_size = syscall (__NR_getunwind, NULL, 0); + gate_table_size = syscall (__NR_getunwind, NULL, 0); if (gate_table_size < 0) return TARGET_XFER_E_IO; |