mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
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:
parent
899f54f5ee
commit
fe6fdd96e9
@ -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>
|
2002-02-02 Richard Earnshaw <rearnsha@arm.com>
|
||||||
|
|
||||||
* gdb.base/default.exp: Rewrite test patterns to reduce time
|
* gdb.base/default.exp: Rewrite test patterns to reduce time
|
||||||
@ -78,6 +83,10 @@
|
|||||||
* gdb.base/maint.exp: Update ``maint internal-error'' to match
|
* gdb.base/maint.exp: Update ``maint internal-error'' to match
|
||||||
continue/quit query. Update copyright.
|
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>
|
2002-01-13 Daniel Jacobowitz <drow@mvista.com>
|
||||||
|
|
||||||
* gdb.c++/demangle.exp: Accept slightly dubious v2 demangler result
|
* gdb.c++/demangle.exp: Accept slightly dubious v2 demangler result
|
||||||
|
@ -185,11 +185,6 @@ D10VTranslate (unsigned long logical,
|
|||||||
static void
|
static void
|
||||||
ovly_copy (unsigned long dst, unsigned long src, long size)
|
ovly_copy (unsigned long dst, unsigned long src, long size)
|
||||||
{
|
{
|
||||||
#ifdef __M32R__
|
|
||||||
memcpy ((void *) dst, (void *) src, size);
|
|
||||||
return;
|
|
||||||
#endif /* M32R */
|
|
||||||
|
|
||||||
#ifdef __D10V__
|
#ifdef __D10V__
|
||||||
unsigned long *s, *d, tmp;
|
unsigned long *s, *d, tmp;
|
||||||
short dmap_src, dmap_dst;
|
short dmap_src, dmap_dst;
|
||||||
@ -220,6 +215,9 @@ ovly_copy (unsigned long dst, unsigned long src, long size)
|
|||||||
D10VTranslate (dst, &dmap_dst, &d);
|
D10VTranslate (dst, &dmap_dst, &d);
|
||||||
}
|
}
|
||||||
DMAP = dmap_save;
|
DMAP = dmap_save;
|
||||||
|
#else
|
||||||
|
memcpy ((void *) dst, (void *) src, size);
|
||||||
#endif /* D10V */
|
#endif /* D10V */
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user