2004-08-02 Andrew Cagney <cagney@gnu.org>
authorAndrew Cagney <cagney@redhat.com>
Mon, 2 Aug 2004 20:59:47 +0000 (20:59 +0000)
committerAndrew Cagney <cagney@redhat.com>
Mon, 2 Aug 2004 20:59:47 +0000 (20:59 +0000)
* cris-tdep.c (cris_register_type): Replace
cris_register_virtual_type.
(cris_gdbarch_init): Update, set register_type.

gdb/ChangeLog
gdb/cris-tdep.c

index 3a19835babebd2929e523fc89e7b6c69ec2f0917..16f61b7a95a8884bf304ac2f33e7afc1db4e964f 100644 (file)
@@ -1,5 +1,9 @@
 2004-08-02  Andrew Cagney  <cagney@gnu.org>
 
+       * cris-tdep.c (cris_register_type): Replace
+       cris_register_virtual_type.
+       (cris_gdbarch_init): Update, set register_type.
+
        * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
        * gdbarch.h, gdbarch.c: Re-generate.
        * arm-tdep.c    (arm_frameless_function_invocation): Delete.
index b9eb855cc4b7249a19342e49bb3f4695554c6cf3..329e18566ea743ebe2393a25ce6e6a60f3f24a7c 100644 (file)
@@ -1211,7 +1211,7 @@ cris_register_offset (int regno)
    of data in register regno.  */
 
 static struct type *
-cris_register_virtual_type (int regno)
+cris_register_type (struct gdbarch *gdbarch, int regno)
 {
   if (regno == SP_REGNUM || regno == PC_REGNUM
       || (regno > P8_REGNUM && regno < USP_REGNUM))
@@ -3862,7 +3862,7 @@ cris_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
   /* The length of the registers in the program's representation.  */
   set_gdbarch_deprecated_register_virtual_size (gdbarch, cris_register_size);
   
-  set_gdbarch_deprecated_register_virtual_type (gdbarch, cris_register_virtual_type);
+  set_gdbarch_register_type (gdbarch, cris_register_type);
   
   /* Dummy frame functions.  */
   set_gdbarch_push_dummy_code (gdbarch, cris_push_dummy_code);
This page took 0.03049 seconds and 4 git commands to generate.