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

@ -1,3 +1,8 @@
2002-02-04 Michael Snyder <msnyder@redhat.com>
* gdb.base/ovlymgr.c (ovly_copy): Generalize for targets
other than d10v and m32r.
2002-02-02 Richard Earnshaw <rearnsha@arm.com>
* gdb.base/default.exp: Rewrite test patterns to reduce time
@ -78,6 +83,10 @@
* gdb.base/maint.exp: Update ``maint internal-error'' to match
continue/quit query. Update copyright.
2002-01-14 Michael Snyder <msnyder@redhat.com>
* gdb.base/gcore.exp: Remove extra debugging output.
2002-01-13 Daniel Jacobowitz <drow@mvista.com>
* gdb.c++/demangle.exp: Accept slightly dubious v2 demangler result

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;
}