2002-02-04 Michael Snyder <msnyder@redhat.com>
authorMichael Snyder <msnyder@vmware.com>
Tue, 5 Feb 2002 03:44:25 +0000 (03:44 +0000)
committerMichael Snyder <msnyder@vmware.com>
Tue, 5 Feb 2002 03:44:25 +0000 (03:44 +0000)
* gdb.base/ovlymgr.c  (ovly_copy): Generalize for targets
          other than d10v and m32r.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/ovlymgr.c

index 83570a3..92cc9d4 100644 (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
        * 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
index bdb90fe..0b04c54 100644 (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;
 }