*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
index 1fb8e36fef4b0a39f1d5d23061f86353f10a7e74..bde89a8fa8e1560f4534e5c9cb1d915379836a10 100644 (file)
@@ -429,6 +429,26 @@ legacy_pc_in_sigtramp (CORE_ADDR pc, char *name)
   return IN_SIGTRAMP(pc, name);
 }
 
+int
+legacy_convert_register_p (int regnum)
+{
+  return REGISTER_CONVERTIBLE (regnum);
+}
+
+void
+legacy_register_to_value (int regnum, struct type *type,
+                         char *from, char *to)
+{
+  REGISTER_CONVERT_TO_VIRTUAL (regnum, type, from, to);
+}
+
+void
+legacy_value_to_register (struct type *type, int regnum,
+                         char *from, char *to)
+{
+  REGISTER_CONVERT_TO_RAW (type, regnum, from, to);
+}
+
 \f
 /* Functions to manipulate the endianness of the target.  */
 
This page took 0.024809 seconds and 4 git commands to generate.