diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-12-10 22:34:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-12-10 22:34:55 +0000 |
commit | a31530e35596104efffd53951619a10a8240df5a (patch) | |
tree | aaa9708642dcc1699d02de253af975cebce203df /sysdeps | |
parent | adc85e2f59df1a3bf72ca0337b8b24540868cff0 (diff) | |
download | glibc-a31530e35596104efffd53951619a10a8240df5a.tar.gz glibc-a31530e35596104efffd53951619a10a8240df5a.tar.xz glibc-a31530e35596104efffd53951619a10a8240df5a.zip |
Update.
* sysdeps/alpha/htonl.S: Fix a typo. 2000-12-10 Jakub Jelinek <jakub@redhat.com>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/alpha/htonl.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/alpha/htonl.S b/sysdeps/alpha/htonl.S index 2358861300..193986e7c3 100644 --- a/sysdeps/alpha/htonl.S +++ b/sysdeps/alpha/htonl.S @@ -33,7 +33,7 @@ ENTRY(htonl) inslh a0, 7, t0 # t0 = 0000000000AABBCC inswl a0, 3, t1 # t1 = 000000CCDD000000 or t1, t0, t1 # t1 = 000000CCDDAABBCC - sll t1, 16, t2 # t2 = 0000000000CCDDAA + srl t1, 16, t2 # t2 = 0000000000CCDDAA zapnot t1, 0x0A, t0 # t0 = 00000000DD00BB00 zapnot t2, 0x05, t3 # t3 = 0000000000CC00AA addl t0, t3, v0 # v0 = ssssssssDDCCBBAA |