diff options
author | 2013-06-13 02:26:15 +0000 | |
---|---|---|
committer | 2013-06-13 02:26:15 +0000 | |
commit | 539a578a53e021d22ef19a290dfa4416ae89ccd8 (patch) | |
tree | d70ea790c46ed0ee5dc426cac551a62eec838bcb /sys/lib/libkern/arch/i386/memcpy.S | |
parent | merge memcpy/memmove/bcopy into one file, with sub-jumps. (diff) | |
download | wireguard-openbsd-539a578a53e021d22ef19a290dfa4416ae89ccd8.tar.xz wireguard-openbsd-539a578a53e021d22ef19a290dfa4416ae89ccd8.zip |
merge bcopy/memmove/memcpy into one file, with jumps so that it is more
likely to be in the cache (like how the explanation is split between
multiple commits?)
tested by various
Diffstat (limited to 'sys/lib/libkern/arch/i386/memcpy.S')
-rw-r--r-- | sys/lib/libkern/arch/i386/memcpy.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/lib/libkern/arch/i386/memcpy.S b/sys/lib/libkern/arch/i386/memcpy.S index b34338a26e6..c9361568da4 100644 --- a/sys/lib/libkern/arch/i386/memcpy.S +++ b/sys/lib/libkern/arch/i386/memcpy.S @@ -1 +1 @@ -/* No code here since kernel implements this itself */ +/* This code is contained in memmove.S */ |