[prev in list] [next in list] [prev in thread] [next in thread] 

List:       glibc-cvs
Subject:    GNU C Library master sources branch master updated. glibc-2.27.9000-525-g86a0f56
From:       raji () sourceware ! org
Date:       2018-06-28 8:29:37
Message-ID: 20180628082937.105773.qmail () sourceware ! org
[Download RAW message or body]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  86a0f56158bd9cbaf2d640e2e6c66539f4cbbcc1 (commit)
      from  780684eb04298977bc411ebca1eadeeba4877833 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=86a0f56158bd9cbaf2d640e2e6c66539f4cbbcc1


commit 86a0f56158bd9cbaf2d640e2e6c66539f4cbbcc1
Author: Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
Date:   Thu Jun 28 13:57:50 2018 +0530

    ldbl-128ibm-compat: Introduce ieee128 symbols
    
    This patch adds __*ieee128 symbols for strfrom, strtold, strtold_l, wcstold
    and wcstold_l functions.  Redirection from *l to *ieee128 will be handled
    in separate patch once we start building these new files.
    
    2018-06-28  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
    
    	* sysdeps/ieee754/ldbl-128ibm-compat/Versions: Add __strfromieee128,
    	 __strtoieee128, __strtoieee128_l,__wcstoieee128 and __wcstoieee128_l.
    	* sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c: New file.
    	* sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c: New file.
    	* sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c: New file.
    	* sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c: New file.
    	* sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c: New file.

diff --git a/ChangeLog b/ChangeLog
index eb1c35f..7a585e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2018-06-28  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
+
+	* sysdeps/ieee754/ldbl-128ibm-compat/Versions: Add __strfromieee128,
+	 __strtoieee128, __strtoieee128_l,__wcstoieee128 and __wcstoieee128_l.
+	* sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c: New file.
+	* sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c: New file.
+	* sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c: New file.
+	* sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c: New file.
+	* sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c: New file.
+
 2018-06-27  Maciej W. Rozycki  <macro@mips.com>
 
 	[BZ #23266]
diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/Versions \
b/sysdeps/ieee754/ldbl-128ibm-compat/Versions index 3220411..f4047f0 100644
--- a/sysdeps/ieee754/ldbl-128ibm-compat/Versions
+++ b/sysdeps/ieee754/ldbl-128ibm-compat/Versions
@@ -111,3 +111,11 @@ libm {
     __ynieee128;
   }
 }
+libc {
+  LDBL_IBM128_VERSION {
+    __strfromieee128;
+    __strtoieee128;
+    __strtoieee128_l;
+    __wcstoieee128;
+    __wcstoieee128_l;
+  }
diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c \
b/sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c new file mode 100644
index 0000000..21eeb94
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c
@@ -0,0 +1,20 @@
+/* Definitions for strfromf128.
+
+   Copyright (C) 2018 Free Software Foundation, Inc.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "../float128/strfromf128.c"
+weak_alias (strfromf128, __strfromieee128)
diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c \
b/sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c new file mode 100644
index 0000000..0cbdc2b
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c
@@ -0,0 +1,20 @@
+/* Definition of strtof128.
+   Copyright (C) 2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "../float128/strtof128.c"
+weak_alias (strtof128, __strtoieee128)
diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c \
b/sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c new file mode 100644
index 0000000..1a166cd
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c
@@ -0,0 +1,20 @@
+/* Convert string representing a number to a _Float128 value, with locale.
+   Copyright (C) 2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "../float128/strtof128_l.c"
+weak_alias (strtof128_l, __strtoieee128_l)
diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c \
b/sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c new file mode 100644
index 0000000..22bdd56
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c
@@ -0,0 +1,20 @@
+/* Definition of wcstof128.
+   Copyright (C) 2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "../float128/wcstof128.c"
+weak_alias (wcstof128, __wcstoieee128)
diff --git a/sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c \
b/sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c new file mode 100644
index 0000000..adac083
--- /dev/null
+++ b/sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c
@@ -0,0 +1,20 @@
+/* Convert string representing a number to a _Float128 value, with locale.
+   Copyright (C) 2018 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
+#include "../float128/wcstof128_l.c"
+weak_alias (wcstof128_l, __wcstoieee128_l)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                        |   10 ++++++++++
 sysdeps/ieee754/ldbl-128ibm-compat/Versions      |    8 ++++++++
 sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c |   20 ++++++++++++++++++++
 sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c   |   20 ++++++++++++++++++++
 sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c |   20 ++++++++++++++++++++
 sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c   |   20 ++++++++++++++++++++
 sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c |   20 ++++++++++++++++++++
 7 files changed, 118 insertions(+), 0 deletions(-)
 create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c
 create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c
 create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c
 create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c
 create mode 100644 sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c


hooks/post-receive
-- 
GNU C Library master sources


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic