Module Name: src
Committed By: christos
Date: Sun Nov 3 00:01:44 UTC 2013
Modified Files:
src/sys/lib/libkern: softfloat.c
Log Message:
mark some variables as unused, but keep them around as comments
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/lib/libkern/softfloat.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/lib/libkern/softfloat.c
diff -u src/sys/lib/libkern/softfloat.c:1.4 src/sys/lib/libkern/softfloat.c:1.5
--- src/sys/lib/libkern/softfloat.c:1.4 Sun Dec 11 07:24:37 2005
+++ src/sys/lib/libkern/softfloat.c Sat Nov 2 20:01:43 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: softfloat.c,v 1.4 2005/12/11 12:24:37 christos Exp $ */
+/* $NetBSD: softfloat.c,v 1.5 2013/11/03 00:01:43 christos Exp $ */
/*
* This version hacked for use with gcc -msoft-float by bjh21.
@@ -49,7 +49,7 @@ this code that are retained.
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: softfloat.c,v 1.4 2005/12/11 12:24:37 christos Exp $");
+__RCSID("$NetBSD: softfloat.c,v 1.5 2013/11/03 00:01:43 christos Exp $");
#endif /* LIBC_SCCS and not lint */
#ifdef SOFTFLOAT_FOR_GCC
@@ -1980,7 +1980,7 @@ according to the IEC/IEEE Standard for B
*/
float32 float32_rem( float32 a, float32 b )
{
- flag aSign, bSign, zSign;
+ flag aSign, bSign __unused, zSign;
int16 aExp, bExp, expDiff;
bits32 aSig, bSig;
bits32 q;
@@ -2950,7 +2950,7 @@ according to the IEC/IEEE Standard for B
*/
float64 float64_rem( float64 a, float64 b )
{
- flag aSign, bSign, zSign;
+ flag aSign, bSign __unused, zSign;
int16 aExp, bExp, expDiff;
bits64 aSig, bSig;
bits64 q, alternateASig;