Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/arch/i386/gen Use a plain float constant, no need t...



details:   https://anonhg.NetBSD.org/src/rev/3617c0a1104e
branches:  trunk
changeset: 765224:3617c0a1104e
user:      joerg <joerg%NetBSD.org@localhost>
date:      Sun May 22 20:11:47 2011 +0000

description:
Use a plain float constant, no need to deal with messy 0r prefix

diffstat:

 lib/libc/arch/i386/gen/fixunsdfsi.S |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r 34d9b953f7f7 -r 3617c0a1104e lib/libc/arch/i386/gen/fixunsdfsi.S
--- a/lib/libc/arch/i386/gen/fixunsdfsi.S       Sun May 22 16:08:48 2011 +0000
+++ b/lib/libc/arch/i386/gen/fixunsdfsi.S       Sun May 22 20:11:47 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fixunsdfsi.S,v 1.11 2003/08/07 16:42:07 agc Exp $      */
+/*     $NetBSD: fixunsdfsi.S,v 1.12 2011/05/22 20:11:47 joerg Exp $    */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -36,7 +36,7 @@
 
 #include <machine/asm.h>
 #if defined(LIBC_SCCS)
-       RCSID("$NetBSD: fixunsdfsi.S,v 1.11 2003/08/07 16:42:07 agc Exp $")
+       RCSID("$NetBSD: fixunsdfsi.S,v 1.12 2011/05/22 20:11:47 joerg Exp $")
 #endif
 
 ENTRY(__fixunsdfsi)
@@ -72,4 +72,4 @@
        orl     $0x80000000,%eax        /* restore bias */
        ret
 
-fbiggestsigned:        .double 0r2147483648.0
+fbiggestsigned:        .double 2147483648.0



Home | Main Index | Thread Index | Old Index