Module Name: src
Committed By: matt
Date: Thu Jul 18 21:36:08 UTC 2013
Modified Files:
src/lib/libc/arch/m68k/gen: flt_rounds_softfloat.S
Log Message:
Fix typo. Don't define map if it isn't used.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S
diff -u src/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S:1.4 src/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S:1.5
--- src/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S:1.4 Tue Jul 16 22:12:20 2013
+++ src/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S Thu Jul 18 21:36:08 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: flt_rounds_softfloat.S,v 1.4 2013/07/16 22:12:20 matt Exp $ */
+/* $NetBSD: flt_rounds_softfloat.S,v 1.5 2013/07/18 21:36:08 matt Exp $ */
/*
* Written by J.T. Conklin, Apr 6, 1995
@@ -12,14 +12,14 @@
#include <machine/asm.h>
.text
- .even
-
+#if 0
/* NB: this is tied to the gcc-2.95 lb1sf68.asm: */
_map:
.byte 1 /* round to nearest */
.byte 0 /* round to zero */
.byte 2 /* round to positive infinity */
.byte 3 /* round to negative infinity */
+#endif
ENTRY(__flt_rounds)
/* lea _C_LABEL(_fpCCR),%a0 | check the rounding mode */
@@ -27,4 +27,4 @@ ENTRY(__flt_rounds)
/* lea _map,%a0 */
moveb #0,%d0
rts
-END(_flt_rounds)
+END(__flt_rounds)