Replace CONST with const
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
index 93da7c86ca940efaf69833efd9a18bab024e5b7f..f395c3e18ad4c2b9ac2de2648c446347bad0c2e9 100644 (file)
@@ -99,6 +99,12 @@ generic_return_value_on_stack_not (struct type *type)
   return 0;
 }
 
+CORE_ADDR
+generic_skip_trampoline_code (CORE_ADDR pc)
+{
+  return 0;
+}
+
 char *
 legacy_register_name (int i)
 {
@@ -140,6 +146,13 @@ generic_prologue_frameless_p (CORE_ADDR ip)
 #endif
 }
 
+/* New/multi-arched targets should use the correct gdbarch field
+   instead of using this global pointer. */
+int
+legacy_print_insn (bfd_vma vma, disassemble_info *info)
+{
+  return (*tm_print_insn) (vma, info);
+}
 
 /* Helper functions for INNER_THAN */
 
This page took 0.024544 seconds and 4 git commands to generate.