2005-05-09 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / arch-utils.c
index a8fa5caa9ccd419337301ba48a753d0a7b0a0f00..13134fa9bf40fbe8e188b81929f6d3966c5752c5 100644 (file)
@@ -44,7 +44,7 @@ legacy_extract_return_value (struct type *type, struct regcache *regcache,
                             void *valbuf)
 {
   char *registers = deprecated_grub_regcache_for_registers (regcache);
-  bfd_byte *buf = valbuf;
+  gdb_byte *buf = valbuf;
   DEPRECATED_EXTRACT_RETURN_VALUE (type, registers, buf); /* OK */
 }
 
@@ -54,7 +54,7 @@ void
 legacy_store_return_value (struct type *type, struct regcache *regcache,
                           const void *buf)
 {
-  bfd_byte *b = alloca (TYPE_LENGTH (type));
+  gdb_byte *b = alloca (TYPE_LENGTH (type));
   gdb_assert (regcache == current_regcache);
   memcpy (b, buf, TYPE_LENGTH (type));
   DEPRECATED_STORE_RETURN_VALUE (type, b);
This page took 0.024907 seconds and 4 git commands to generate.