Module Name: src
Committed By: matt
Date: Sun Aug 30 23:27:35 UTC 2009
Modified Files:
src/common/lib/libc/arch/mips/gen [matt-nb5-mips64]: byte_swap_8.S
Log Message:
Fix typo (dshb -> dshd)
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.1 -r1.1.2.2 \
src/common/lib/libc/arch/mips/gen/byte_swap_8.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/common/lib/libc/arch/mips/gen/byte_swap_8.S
diff -u src/common/lib/libc/arch/mips/gen/byte_swap_8.S:1.1.2.1 src/common/lib/libc/arch/mips/gen/byte_swap_8.S:1.1.2.2
--- src/common/lib/libc/arch/mips/gen/byte_swap_8.S:1.1.2.1 Sun Aug 30 20:58:24 2009
+++ src/common/lib/libc/arch/mips/gen/byte_swap_8.S Sun Aug 30 23:27:35 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: byte_swap_8.S,v 1.1.2.1 2009/08/30 20:58:24 matt Exp $ */
+/* $NetBSD: byte_swap_8.S,v 1.1.2.2 2009/08/30 23:27:35 matt Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -35,7 +35,7 @@
#include <mips/asm.h>
#if defined(LIBC_SCCS) && !defined(lint)
- RCSID("$NetBSD: byte_swap_8.S,v 1.1.2.1 2009/08/30 20:58:24 matt Exp $")
+ RCSID("$NetBSD: byte_swap_8.S,v 1.1.2.2 2009/08/30 23:27:35 matt Exp $")
#endif /* LIBC_SCCS and not lint */
#undef _LOCORE
@@ -55,7 +55,7 @@
* If we are on MIPS32r2 or MIPS64r2 use the new instructions.
*/
dsbh v0, a0 # dwords swap bytes within halfwords
- dsbd v0, v0 # dwords swap halwords within dwords
+ dshd v0, v0 # dwords swap halwords within dwords
j ra
#else /* defined(__mips_o32) */
/*