diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-09-04 00:23:15 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-09-04 00:23:15 +0000 |
| commit | ef0cd312df6002624e556e04dd97a0135be888b8 (patch) | |
| tree | 08eea8a7a15e5085b4886c6149bc8232bd513043 /lib/libc | |
| parent | 4c36bcaa87ec114cb0e66e35c28948b0a62df0ec (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/ia64/string/memmove.S | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/libc/ia64/string/memmove.S b/lib/libc/ia64/string/memmove.S index 06639d15f682..19fa8affc399 100644 --- a/lib/libc/ia64/string/memmove.S +++ b/lib/libc/ia64/string/memmove.S @@ -28,10 +28,9 @@ __FBSDID("$FreeBSD$"); ENTRY(memmove,3) - - mov r14=in0 ;; - mov in0=in1 ;; - mov in1=r14 - br.cond.sptk.few bcopy - -END(memcpy) + mov r8 = in0 + mov in0 = in1 + ;; + mov in1 = r8 + br.sptk.few bcopy +END(memmove) |
