Module Name:    src
Committed By:   snj
Date:           Sat Mar 21 17:41:38 UTC 2015

Modified Files:
        src/lib/libc/arch/arm/gen [netbsd-7]: flt_rounds.c
        src/lib/libc/arch/mips/gen [netbsd-7]: flt_rounds.c
        src/lib/libc/arch/powerpc/gen [netbsd-7]: flt_rounds.c
        src/lib/libc/arch/powerpc64/gen [netbsd-7]: flt_rounds.c
        src/lib/libc/arch/sh3/gen [netbsd-7]: flt_rounds.c

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.10.1 src/lib/libc/arch/arm/gen/flt_rounds.c
cvs rdiff -u -r1.7 -r1.7.10.1 src/lib/libc/arch/mips/gen/flt_rounds.c
cvs rdiff -u -r1.11 -r1.11.20.1 src/lib/libc/arch/powerpc/gen/flt_rounds.c
cvs rdiff -u -r1.1 -r1.1.64.1 src/lib/libc/arch/powerpc64/gen/flt_rounds.c
cvs rdiff -u -r1.5 -r1.5.10.1 src/lib/libc/arch/sh3/gen/flt_rounds.c

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/arm/gen/flt_rounds.c
diff -u src/lib/libc/arch/arm/gen/flt_rounds.c:1.4 src/lib/libc/arch/arm/gen/flt_rounds.c:1.4.10.1
--- src/lib/libc/arch/arm/gen/flt_rounds.c:1.4	Wed Mar 21 20:04:57 2012
+++ src/lib/libc/arch/arm/gen/flt_rounds.c	Sat Mar 21 17:41:38 2015
@@ -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>
 

Index: src/lib/libc/arch/mips/gen/flt_rounds.c
diff -u src/lib/libc/arch/mips/gen/flt_rounds.c:1.7 src/lib/libc/arch/mips/gen/flt_rounds.c:1.7.10.1
--- src/lib/libc/arch/mips/gen/flt_rounds.c:1.7	Sun Jun 24 15:26:02 2012
+++ src/lib/libc/arch/mips/gen/flt_rounds.c	Sat Mar 21 17:41:38 2015
@@ -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>
 

Index: src/lib/libc/arch/powerpc/gen/flt_rounds.c
diff -u src/lib/libc/arch/powerpc/gen/flt_rounds.c:1.11 src/lib/libc/arch/powerpc/gen/flt_rounds.c:1.11.20.1
--- src/lib/libc/arch/powerpc/gen/flt_rounds.c:1.11	Sun Jul 10 21:18:47 2011
+++ src/lib/libc/arch/powerpc/gen/flt_rounds.c	Sat Mar 21 17:41:38 2015
@@ -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>

Index: src/lib/libc/arch/powerpc64/gen/flt_rounds.c
diff -u src/lib/libc/arch/powerpc64/gen/flt_rounds.c:1.1 src/lib/libc/arch/powerpc64/gen/flt_rounds.c:1.1.64.1
--- src/lib/libc/arch/powerpc64/gen/flt_rounds.c:1.1	Sat Jul  1 16:37:20 2006
+++ src/lib/libc/arch/powerpc64/gen/flt_rounds.c	Sat Mar 21 17:41:38 2015
@@ -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>

Index: src/lib/libc/arch/sh3/gen/flt_rounds.c
diff -u src/lib/libc/arch/sh3/gen/flt_rounds.c:1.5 src/lib/libc/arch/sh3/gen/flt_rounds.c:1.5.10.1
--- src/lib/libc/arch/sh3/gen/flt_rounds.c:1.5	Thu Mar 22 08:58:39 2012
+++ src/lib/libc/arch/sh3/gen/flt_rounds.c	Sat Mar 21 17:41:38 2015
@@ -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>
 

Reply via email to