2002-02-04 Michael Snyder <msnyder@redhat.com>

* gdb.base/ovlymgr.c  (ovly_copy): Generalize for targets
          other than d10v and m32r.
This commit is contained in:
Michael Snyder
2002-02-05 03:44:25 +00:00
parent 899f54f5ee
commit fe6fdd96e9
2 changed files with 12 additions and 5 deletions

View File

@ -185,11 +185,6 @@ D10VTranslate (unsigned long logical,
static void
ovly_copy (unsigned long dst, unsigned long src, long size)
{
#ifdef __M32R__
memcpy ((void *) dst, (void *) src, size);
return;
#endif /* M32R */
#ifdef __D10V__
unsigned long *s, *d, tmp;
short dmap_src, dmap_dst;
@ -220,6 +215,9 @@ ovly_copy (unsigned long dst, unsigned long src, long size)
D10VTranslate (dst, &dmap_dst, &d);
}
DMAP = dmap_save;
#else
memcpy ((void *) dst, (void *) src, size);
#endif /* D10V */
return;
}