testsuite: Fix gdb.btrace/tailcall-only.exp errors on x86_64-m32
[deliverable/binutils-gdb.git] / gdb / sentinel-frame.c
index 1bb62f44bca229fbde68b763fb69921ce87cae2f..6cd1bc35ad3e281faa9d4492267cd7559f6e6f61 100644 (file)
@@ -1,6 +1,6 @@
 /* Code dealing with register stack frames, for GDB, the GNU debugger.
 
-   Copyright (C) 1986-2015 Free Software Foundation, Inc.
+   Copyright (C) 1986-2016 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -46,7 +46,8 @@ sentinel_frame_prev_register (struct frame_info *this_frame,
                              void **this_prologue_cache,
                              int regnum)
 {
-  struct frame_unwind_cache *cache = *this_prologue_cache;
+  struct frame_unwind_cache *cache
+    = (struct frame_unwind_cache *) *this_prologue_cache;
   struct value *value;
 
   value = regcache_cooked_read_value (cache->regcache, regnum);
@@ -70,7 +71,8 @@ static struct gdbarch *
 sentinel_frame_prev_arch (struct frame_info *this_frame,
                          void **this_prologue_cache)
 {
-  struct frame_unwind_cache *cache = *this_prologue_cache;
+  struct frame_unwind_cache *cache
+    = (struct frame_unwind_cache *) *this_prologue_cache;
 
   return get_regcache_arch (cache->regcache);
 }
This page took 0.027196 seconds and 4 git commands to generate.