* rs6000-tdep.c (rs6000_builtin_type_vec128): Add v2_double
[deliverable/binutils-gdb.git] / gdb / dummy-frame.c
index 6e63686c111dd601284fe66cca94e573c2225f2e..90eb43100abd5bc936aa797e2b8c8365c4bd88ae 100644 (file)
@@ -66,7 +66,7 @@ static struct dummy_frame *dummy_frame_stack = NULL;
    NOTE: cagney/2004-08-02: Code should not need to call this.  */
 
 int
-deprecated_pc_in_call_dummy (CORE_ADDR pc)
+deprecated_pc_in_call_dummy (struct gdbarch *gdbarch, CORE_ADDR pc)
 {
   struct dummy_frame *dummyframe;
   for (dummyframe = dummy_frame_stack;
@@ -75,7 +75,7 @@ deprecated_pc_in_call_dummy (CORE_ADDR pc)
     {
       if ((pc >= dummyframe->id.code_addr)
          && (pc <= dummyframe->id.code_addr
-                   + gdbarch_decr_pc_after_break (current_gdbarch)))
+                   + gdbarch_decr_pc_after_break (gdbarch)))
        return 1;
     }
   return 0;
This page took 0.02335 seconds and 4 git commands to generate.