Module Name: src
Committed By: simonb
Date: Thu Apr 29 08:14:08 UTC 2021
Modified Files:
src/sys/arch/mips/mips: fp.S
Log Message:
Move a comment slighty so that it's before two #ifdef blocks that do the
same thing instead of in the middle of them.
To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sys/arch/mips/mips/fp.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/fp.S
diff -u src/sys/arch/mips/mips/fp.S:1.52 src/sys/arch/mips/mips/fp.S:1.53
--- src/sys/arch/mips/mips/fp.S:1.52 Thu Apr 29 08:11:38 2021
+++ src/sys/arch/mips/mips/fp.S Thu Apr 29 08:14:08 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: fp.S,v 1.52 2021/04/29 08:11:38 simonb Exp $ */
+/* $NetBSD: fp.S,v 1.53 2021/04/29 08:14:08 simonb Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -4411,13 +4411,14 @@ END(renorm_fs_d)
*----------------------------------------------------------------------------
*/
STATIC_LEAF(renorm_ft_s)
+/*
+ * Find out how many leading zero bits are in ta2 and put in v1.
+ */
#if __mips == 32 || __mips == 64
clz v1, ta2
#else
.set noat
-/*
- * Find out how many leading zero bits are in ta2 and put in v1.
- */
+
move v0, ta2
move v1, zero
srl AT, v0, 16