svn commit: r341273 - in head: lib/libc/amd64/string sys/amd64/amd64

Mateusz Guzik mjg at FreeBSD.org
Fri Nov 30 00:47:38 UTC 2018


Author: mjg
Date: Fri Nov 30 00:47:36 2018
New Revision: 341273
URL: https://svnweb.freebsd.org/changeset/base/341273

Log:
  amd64: remove stale attribution for memmove work
  
  While the routine started as expanded bcopy, it is now entirely rewritten.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/lib/libc/amd64/string/memmove.S
  head/sys/amd64/amd64/support.S

Modified: head/lib/libc/amd64/string/memmove.S
==============================================================================
--- head/lib/libc/amd64/string/memmove.S	Fri Nov 30 00:45:10 2018	(r341272)
+++ head/lib/libc/amd64/string/memmove.S	Fri Nov 30 00:47:36 2018	(r341273)
@@ -34,8 +34,6 @@ __FBSDID("$FreeBSD$");
 /*
  * memmove(dst, src, cnt)
  *         rdi, rsi, rdx
- * Contains parts of bcopy written by:
- *  ws at tools.de     (Wolfgang Solfrank, TooLs GmbH) +49-228-985800
  */
 
 /*

Modified: head/sys/amd64/amd64/support.S
==============================================================================
--- head/sys/amd64/amd64/support.S	Fri Nov 30 00:45:10 2018	(r341272)
+++ head/sys/amd64/amd64/support.S	Fri Nov 30 00:47:36 2018	(r341273)
@@ -197,8 +197,6 @@ END(memcmp)
 /*
  * memmove(dst, src, cnt)
  *         rdi, rsi, rdx
- * Adapted from bcopy written by:
- *  ws at tools.de     (Wolfgang Solfrank, TooLs GmbH) +49-228-985800
  */
 
 /*


More information about the svn-src-head mailing list