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]

Community source repository for glibc add-on ports branch, master, updated. glibc-2.15-134-g860d60c


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 "Community source repository for glibc add-on ports".

The branch, master has been updated
       via  860d60c13853eb97aae779beb65d4630b578c84d (commit)
      from  c325f0f22675e987c60a2e1c6419ffad3ed6c6ec (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://sources.redhat.com/git/gitweb.cgi?p=glibc-ports.git;a=commitdiff;h=860d60c13853eb97aae779beb65d4630b578c84d

commit 860d60c13853eb97aae779beb65d4630b578c84d
Author: Andreas Schwab <schwab@linux-m68k.org>
Date:   Tue Apr 17 23:59:10 2012 +0200

    m68k: rename s_ilogb* to e_ilogb*

diff --git a/ChangeLog.m68k b/ChangeLog.m68k
index d631b40..9d9b181 100644
--- a/ChangeLog.m68k
+++ b/ChangeLog.m68k
@@ -1,3 +1,12 @@
+2012-04-17  Andreas Schwab  <schwab@linux-m68k.org>
+
+	* sysdeps/m68k/m680x0/fpu/e_ilogb.c: Renamed from s_ilogb.c.
+	Define __ieee754_ilogb instead of __ilogb.
+	* sysdeps/m68k/m680x0/fpu/e_ilogbf.c: Renamed from s_ilogbf.c and
+	adjusted.
+	* sysdeps/m68k/m680x0/fpu/e_ilogbl.c: Renamed from s_ilogbl.c and
+	adjusted.
+
 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
 
 	* sysdeps/unix/sysv/linux/m68k/bits/mman.h (MAP_STACK)
diff --git a/sysdeps/m68k/m680x0/fpu/s_ilogb.c b/sysdeps/m68k/m680x0/fpu/e_ilogb.c
similarity index 88%
rename from sysdeps/m68k/m680x0/fpu/s_ilogb.c
rename to sysdeps/m68k/m680x0/fpu/e_ilogb.c
index ab4438a..41c597a 100644
--- a/sysdeps/m68k/m680x0/fpu/s_ilogb.c
+++ b/sysdeps/m68k/m680x0/fpu/e_ilogb.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2012 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
@@ -30,7 +30,7 @@
 #define m81(func) __m81_u(s(func))
 
 int
-s(__ilogb) (float_type x)
+s(__ieee754_ilogb) (float_type x)
 {
   float_type result;
   unsigned long x_cond;
@@ -45,6 +45,3 @@ s(__ilogb) (float_type x)
   __asm ("fgetexp%.x %1, %0" : "=f" (result) : "f" (x));
   return (int) result;
 }
-
-#define weak_aliasx(a,b) weak_alias(a,b)
-weak_aliasx (s(__ilogb), s(ilogb))
diff --git a/sysdeps/m68k/m680x0/fpu/s_ilogbf.c b/sysdeps/m68k/m680x0/fpu/e_ilogbf.c
similarity index 65%
rename from sysdeps/m68k/m680x0/fpu/s_ilogbf.c
rename to sysdeps/m68k/m680x0/fpu/e_ilogbf.c
index 4031c42..34a8cd2 100644
--- a/sysdeps/m68k/m680x0/fpu/s_ilogbf.c
+++ b/sysdeps/m68k/m680x0/fpu/e_ilogbf.c
@@ -1,3 +1,3 @@
 #define SUFF f
 #define float_type float
-#include <s_ilogb.c>
+#include <e_ilogb.c>
diff --git a/sysdeps/m68k/m680x0/fpu/s_ilogbl.c b/sysdeps/m68k/m680x0/fpu/e_ilogbl.c
similarity index 68%
rename from sysdeps/m68k/m680x0/fpu/s_ilogbl.c
rename to sysdeps/m68k/m680x0/fpu/e_ilogbl.c
index 9c55a11..b0e13af 100644
--- a/sysdeps/m68k/m680x0/fpu/s_ilogbl.c
+++ b/sysdeps/m68k/m680x0/fpu/e_ilogbl.c
@@ -1,3 +1,3 @@
 #define SUFF l
 #define float_type long double
-#include <s_ilogb.c>
+#include <e_ilogb.c>

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

Summary of changes:
 ChangeLog.m68k                                     |    9 +++++++++
 sysdeps/m68k/m680x0/fpu/{s_ilogb.c => e_ilogb.c}   |    7 ++-----
 sysdeps/m68k/m680x0/fpu/{e_atan2f.c => e_ilogbf.c} |    2 +-
 sysdeps/m68k/m680x0/fpu/{e_atan2l.c => e_ilogbl.c} |    2 +-
 sysdeps/m68k/m680x0/fpu/s_ilogbf.c                 |    3 ---
 sysdeps/m68k/m680x0/fpu/s_ilogbl.c                 |    3 ---
 6 files changed, 13 insertions(+), 13 deletions(-)
 rename sysdeps/m68k/m680x0/fpu/{s_ilogb.c => e_ilogb.c} (88%)
 copy sysdeps/m68k/m680x0/fpu/{e_atan2f.c => e_ilogbf.c} (65%)
 copy sysdeps/m68k/m680x0/fpu/{e_atan2l.c => e_ilogbl.c} (68%)
 delete mode 100644 sysdeps/m68k/m680x0/fpu/s_ilogbf.c
 delete mode 100644 sysdeps/m68k/m680x0/fpu/s_ilogbl.c


hooks/post-receive
-- 
Community source repository for glibc add-on ports


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