Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/arch/m68k/gen Fix typo. Don't define map if it isn...
details: https://anonhg.NetBSD.org/src/rev/3867a5d2faf7
branches: trunk
changeset: 788732:3867a5d2faf7
user: matt <matt%NetBSD.org@localhost>
date: Thu Jul 18 21:36:08 2013 +0000
description:
Fix typo. Don't define map if it isn't used.
diffstat:
lib/libc/arch/m68k/gen/flt_rounds_softfloat.S | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (32 lines):
diff -r 1e678813c781 -r 3867a5d2faf7 lib/libc/arch/m68k/gen/flt_rounds_softfloat.S
--- a/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S Thu Jul 18 21:34:33 2013 +0000
+++ b/lib/libc/arch/m68k/gen/flt_rounds_softfloat.S Thu Jul 18 21:36:08 2013 +0000
@@ -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 @@
/* lea _map,%a0 */
moveb #0,%d0
rts
-END(_flt_rounds)
+END(__flt_rounds)
Home |
Main Index |
Thread Index |
Old Index