summaryrefslogtreecommitdiff
path: root/gdb/amd64-linux-tdep.c
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2007-10-08 12:48:05 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2007-10-08 12:48:05 +0000
commitd36f4f44fbecd09568e9fc029cf179f2eb364111 (patch)
tree7a9c2f563efd59e38b4a416f1dfcc556afb94d6a /gdb/amd64-linux-tdep.c
parentb7b8cf5049780bbcb08f5fc04e9279d48dc7d6b6 (diff)
downloadgdb-d36f4f44fbecd09568e9fc029cf179f2eb364111.tar.gz
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.
Diffstat (limited to 'gdb/amd64-linux-tdep.c')
-rw-r--r--gdb/amd64-linux-tdep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/amd64-linux-tdep.c b/gdb/amd64-linux-tdep.c
index e26bdd55774..aeb6600f235 100644
--- a/gdb/amd64-linux-tdep.c
+++ b/gdb/amd64-linux-tdep.c
@@ -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