2007-10-08 Markus Deuling <deuling@de.ibm.com>

* amd64-tdep.c (amd64_frame_prev_register, amd64_sigtramp_frame_cache):
	Use get_regcache_arch or get_frame_arch to get at the current
	architecture by regcache or by frame, respectively.
	* amd64-linux-tdep.c (amd64_linux_sigcontext_addr): Likewise.
	* amd64-nat.c (amd64_supply_native_gregset)
	(amd64_collect_native_gregset): Replace current_gdbarch by gdbarch.
This commit is contained in:
Ulrich Weigand
2007-10-08 12:48:05 +00:00
parent ec7cc0e816
commit 2ae02b477b
4 changed files with 19 additions and 8 deletions

View File

@ -154,7 +154,8 @@ amd64_linux_sigcontext_addr (struct frame_info *next_frame)
CORE_ADDR sp;
gdb_byte buf[8];
frame_unwind_register (next_frame, gdbarch_sp_regnum (current_gdbarch), buf);
frame_unwind_register (next_frame,
gdbarch_sp_regnum (get_frame_arch (next_frame)), buf);
sp = extract_unsigned_integer (buf, 8);
/* The sigcontext structure is part of the user context. A pointer