* vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
authorMark Kettenis <kettenis@gnu.org>
Sun, 8 Aug 2004 10:38:29 +0000 (10:38 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sun, 8 Aug 2004 10:38:29 +0000 (10:38 +0000)
frame_pc_unwind.

gdb/ChangeLog
gdb/vax-tdep.c

index b547b04307955a464a8668b6848107438b3d9c6a..04aea456f226af0ffe32092f720fa63768ede444 100644 (file)
@@ -1,5 +1,8 @@
 2004-08-08  Mark Kettenis  <kettenis@gnu.org>
 
+       * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
+       frame_pc_unwind.
+
        * procfs.c (procfs_pid_to_str): Remove redundant and unused
        variables.  Incapitalized "process".
 
index a790fad8383960d2b5882b83e9d4b688c4d0e5a7..21e71b9655865beb369e0919b2e37fb39fe6d956 100644 (file)
@@ -383,7 +383,7 @@ vax_frame_this_id (struct frame_info *next_frame, void **this_cache,
   if (cache->base == 0)
     return;
 
-  (*this_id) = frame_id_build (cache->base, frame_pc_unwind (next_frame));
+  (*this_id) = frame_id_build (cache->base, frame_func_unwind (next_frame));
 }
 
 static void
This page took 0.046067 seconds and 4 git commands to generate.