Source-Changes-HG archive

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

[src/netbsd-7]: src/lib/libc/arch Pull up following revision(s) (requested by...



details:   https://anonhg.NetBSD.org/src/rev/9c0cfc6e9c9d
branches:  netbsd-7
changeset: 799128:9c0cfc6e9c9d
user:      snj <snj%NetBSD.org@localhost>
date:      Sat Mar 21 17:41:38 2015 +0000

description:
Pull up following revision(s) (requested by joerg in ticket #632):
        lib/libc/arch/arm/gen/flt_rounds.c: revision 1.5
        lib/libc/arch/mips/gen/flt_rounds.c: revision 1.9
        lib/libc/arch/powerpc/gen/flt_rounds.c: revision 1.12
        lib/libc/arch/powerpc64/gen/flt_rounds.c: revision 1.2
        lib/libc/arch/sh3/gen/flt_rounds.c: revision 1.6
Call libc's fpgetround.

diffstat:

 lib/libc/arch/arm/gen/flt_rounds.c       |  5 +++--
 lib/libc/arch/mips/gen/flt_rounds.c      |  5 +++--
 lib/libc/arch/powerpc/gen/flt_rounds.c   |  5 +++--
 lib/libc/arch/powerpc64/gen/flt_rounds.c |  5 +++--
 lib/libc/arch/sh3/gen/flt_rounds.c       |  5 +++--
 5 files changed, 15 insertions(+), 10 deletions(-)

diffs (105 lines):

diff -r 5956e8bce614 -r 9c0cfc6e9c9d lib/libc/arch/arm/gen/flt_rounds.c
--- a/lib/libc/arch/arm/gen/flt_rounds.c        Sat Mar 21 17:34:21 2015 +0000
+++ b/lib/libc/arch/arm/gen/flt_rounds.c        Sat Mar 21 17:41:38 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: flt_rounds.c,v 1.4 2012/03/21 20:04:57 he Exp $        */
+/*     $NetBSD: flt_rounds.c,v 1.4.10.1 2015/03/21 17:41:38 snj Exp $  */
 
 /*
  * Copyright (c) 1996 Mark Brinicombe
@@ -33,9 +33,10 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: flt_rounds.c,v 1.4 2012/03/21 20:04:57 he Exp $");
+__RCSID("$NetBSD: flt_rounds.c,v 1.4.10.1 2015/03/21 17:41:38 snj Exp $");
 #endif /* LIBC_SCCS and not lint */
 
+#include "namespace.h"
 #include <sys/types.h>
 #include <ieeefp.h>
 
diff -r 5956e8bce614 -r 9c0cfc6e9c9d lib/libc/arch/mips/gen/flt_rounds.c
--- a/lib/libc/arch/mips/gen/flt_rounds.c       Sat Mar 21 17:34:21 2015 +0000
+++ b/lib/libc/arch/mips/gen/flt_rounds.c       Sat Mar 21 17:41:38 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: flt_rounds.c,v 1.7 2012/06/24 15:26:02 christos Exp $  */
+/*     $NetBSD: flt_rounds.c,v 1.7.10.1 2015/03/21 17:41:38 snj Exp $  */
 
 /*
  * Written by J.T. Conklin, Apr 11, 1995
@@ -7,9 +7,10 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: flt_rounds.c,v 1.7 2012/06/24 15:26:02 christos Exp $");
+__RCSID("$NetBSD: flt_rounds.c,v 1.7.10.1 2015/03/21 17:41:38 snj Exp $");
 #endif /* LIBC_SCCS and not lint */
 
+#include "namespace.h"
 #include <machine/float.h>
 #include <ieeefp.h>
 
diff -r 5956e8bce614 -r 9c0cfc6e9c9d lib/libc/arch/powerpc/gen/flt_rounds.c
--- a/lib/libc/arch/powerpc/gen/flt_rounds.c    Sat Mar 21 17:34:21 2015 +0000
+++ b/lib/libc/arch/powerpc/gen/flt_rounds.c    Sat Mar 21 17:41:38 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: flt_rounds.c,v 1.11 2011/07/10 21:18:47 matt Exp $     */
+/*     $NetBSD: flt_rounds.c,v 1.11.20.1 2015/03/21 17:41:38 snj Exp $ */
 
 /*
  * Copyright (c) 1996 Mark Brinicombe
@@ -33,9 +33,10 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: flt_rounds.c,v 1.11 2011/07/10 21:18:47 matt Exp $");
+__RCSID("$NetBSD: flt_rounds.c,v 1.11.20.1 2015/03/21 17:41:38 snj Exp $");
 #endif /* LIBC_SCCS and not lint */
 
+#include "namespace.h"
 #include <ieeefp.h>
 #include <float.h>
 #include <stdint.h>
diff -r 5956e8bce614 -r 9c0cfc6e9c9d lib/libc/arch/powerpc64/gen/flt_rounds.c
--- a/lib/libc/arch/powerpc64/gen/flt_rounds.c  Sat Mar 21 17:34:21 2015 +0000
+++ b/lib/libc/arch/powerpc64/gen/flt_rounds.c  Sat Mar 21 17:41:38 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: flt_rounds.c,v 1.1 2006/07/01 16:37:20 ross Exp $      */
+/*     $NetBSD: flt_rounds.c,v 1.1.64.1 2015/03/21 17:41:38 snj Exp $  */
 
 /*
  * Copyright (c) 1996 Mark Brinicombe
@@ -33,9 +33,10 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: flt_rounds.c,v 1.1 2006/07/01 16:37:20 ross Exp $");
+__RCSID("$NetBSD: flt_rounds.c,v 1.1.64.1 2015/03/21 17:41:38 snj Exp $");
 #endif /* LIBC_SCCS and not lint */
 
+#include "namespace.h"
 #include <ieeefp.h>
 #include <float.h>
 #include <stdint.h>
diff -r 5956e8bce614 -r 9c0cfc6e9c9d lib/libc/arch/sh3/gen/flt_rounds.c
--- a/lib/libc/arch/sh3/gen/flt_rounds.c        Sat Mar 21 17:34:21 2015 +0000
+++ b/lib/libc/arch/sh3/gen/flt_rounds.c        Sat Mar 21 17:41:38 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: flt_rounds.c,v 1.5 2012/03/22 08:58:39 he Exp $        */
+/*     $NetBSD: flt_rounds.c,v 1.5.10.1 2015/03/21 17:41:38 snj Exp $  */
 
 /*
  * Copyright (c) 1996 Mark Brinicombe
@@ -33,9 +33,10 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: flt_rounds.c,v 1.5 2012/03/22 08:58:39 he Exp $");
+__RCSID("$NetBSD: flt_rounds.c,v 1.5.10.1 2015/03/21 17:41:38 snj Exp $");
 #endif /* LIBC_SCCS and not lint */
 
+#include "namespace.h"
 #include <sys/types.h>
 #include <ieeefp.h>
 



Home | Main Index | Thread Index | Old Index