This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.26.9000-635-gbe080b6


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  be080b6c143901d998c91f28ef7b2fe4a25c0237 (commit)
      from  5062680c602c27c9128ae2e38d199df22a8c2d38 (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=be080b6c143901d998c91f28ef7b2fe4a25c0237

commit be080b6c143901d998c91f28ef7b2fe4a25c0237
Author: Szabolcs Nagy <szabolcs.nagy@arm.com>
Date:   Mon Oct 23 15:31:37 2017 +0100

    aarch64: Add missing math Makefile for recent commit
    
    Without -fno-math-errno, the builtins just do a call instead of
    inlining a single instruction.

diff --git a/ChangeLog b/ChangeLog
index 4a011b1..1316b40 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -55,7 +55,8 @@
 	with __builtin_trunc.
 	* sysdeps/aarch64/fpu/s_truncf.c (__truncf): Replace asm statements
 	with __builtin_truncf.
-	* sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno.
+	* sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno,
+	and s_l[l]round[f].c too.
 
 2017-10-23  Alan Modra  <amodra@gmail.com>
 
diff --git a/sysdeps/aarch64/fpu/Makefile b/sysdeps/aarch64/fpu/Makefile
new file mode 100644
index 0000000..bf38f2c
--- /dev/null
+++ b/sysdeps/aarch64/fpu/Makefile
@@ -0,0 +1,8 @@
+ifeq ($(subdir),math)
+CFLAGS-e_sqrtf.c += -fno-math-errno
+CFLAGS-e_sqrt.c += -fno-math-errno
+CFLAGS-s_lroundf.c += -fno-math-errno
+CFLAGS-s_lround.c += -fno-math-errno
+CFLAGS-s_llroundf.c += -fno-math-errno
+CFLAGS-s_llround.c += -fno-math-errno
+endif

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

Summary of changes:
 ChangeLog                    |    3 ++-
 sysdeps/aarch64/fpu/Makefile |    8 ++++++++
 2 files changed, 10 insertions(+), 1 deletions(-)
 create mode 100644 sysdeps/aarch64/fpu/Makefile


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]