about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1998-06-10 05:27:41 +0000
committerAndreas Schwab <schwab@suse.de>1998-06-10 05:27:41 +0000
commit3fed58f8abb38ebae2214535aa0cd58cd68ebb48 (patch)
tree08628477bf2dcdc07b444b20ef519763bc9593e4
parent4bec453640d6ed6e9cd066347bc8199fb9dea28e (diff)
downloadglibc-3fed58f8abb38ebae2214535aa0cd58cd68ebb48.tar.gz
glibc-3fed58f8abb38ebae2214535aa0cd58cd68ebb48.tar.xz
glibc-3fed58f8abb38ebae2214535aa0cd58cd68ebb48.zip
* sysdeps/m68k/fpu/bits/mathinline.h: Define __ieee754_exp10 as
inline. 
* sysdeps/m68k/fpu/e_exp10.c: New file. 
* sysdeps/m68k/fpu/e_exp10f.c: New file. 
* sysdeps/m68k/fpu/e_exp10l.c: New file.
	* sysdeps/m68k/fpu/bits/mathinline.h: Define __ieee754_exp10 as
 	inline.
	* sysdeps/m68k/fpu/e_exp10.c: New file.
	* sysdeps/m68k/fpu/e_exp10f.c: New file.
	* sysdeps/m68k/fpu/e_exp10l.c: New file.
-rw-r--r--ChangeLog6
-rw-r--r--sysdeps/m68k/fpu/bits/mathinline.h1
-rw-r--r--sysdeps/m68k/fpu/e_exp10.c2
-rw-r--r--sysdeps/m68k/fpu/e_exp10f.c2
-rw-r--r--sysdeps/m68k/fpu/e_exp10l.c2
5 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1b4aadbaf0..c7e619c7fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 Wed Jun 10 10:32:11 1998  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
 
+	* sysdeps/m68k/fpu/bits/mathinline.h: Define __ieee754_exp10 as
+ 	inline.
+	* sysdeps/m68k/fpu/e_exp10.c: New file.
+	* sysdeps/m68k/fpu/e_exp10f.c: New file.
+	* sysdeps/m68k/fpu/e_exp10l.c: New file.
+
 	* sysdeps/m68k/dl-machine.h (elf_machine_runtime_setup): Set
 	_dl_profile_map only if the name matches.
 	(_dl_start_user): Remember stack address.
diff --git a/sysdeps/m68k/fpu/bits/mathinline.h b/sysdeps/m68k/fpu/bits/mathinline.h
index 7ddf6aec2a..e5eb591e30 100644
--- a/sysdeps/m68k/fpu/bits/mathinline.h
+++ b/sysdeps/m68k/fpu/bits/mathinline.h
@@ -125,6 +125,7 @@ __inline_mathop(__ieee754_cosh, cosh)
 __inline_mathop(__ieee754_sinh, sinh)
 __inline_mathop(__ieee754_exp, etox)
 __inline_mathop(__ieee754_exp2, twotox)
+__inline_mathop(__ieee754_exp10, tentox)
 __inline_mathop(__ieee754_log10, log10)
 __inline_mathop(__ieee754_log, logn)
 __inline_mathop(__ieee754_sqrt, sqrt)
diff --git a/sysdeps/m68k/fpu/e_exp10.c b/sysdeps/m68k/fpu/e_exp10.c
new file mode 100644
index 0000000000..a1dd224470
--- /dev/null
+++ b/sysdeps/m68k/fpu/e_exp10.c
@@ -0,0 +1,2 @@
+#define FUNC __ieee754_exp10
+#include <e_acos.c>
diff --git a/sysdeps/m68k/fpu/e_exp10f.c b/sysdeps/m68k/fpu/e_exp10f.c
new file mode 100644
index 0000000000..1b78bc3723
--- /dev/null
+++ b/sysdeps/m68k/fpu/e_exp10f.c
@@ -0,0 +1,2 @@
+#define FUNC __ieee754_exp10f
+#include <e_acosf.c>
diff --git a/sysdeps/m68k/fpu/e_exp10l.c b/sysdeps/m68k/fpu/e_exp10l.c
new file mode 100644
index 0000000000..5e901999fa
--- /dev/null
+++ b/sysdeps/m68k/fpu/e_exp10l.c
@@ -0,0 +1,2 @@
+#define FUNC __ieee754_exp10l
+#include <e_acosl.c>