summaryrefslogtreecommitdiff
path: root/src/pkg/math/Makefile
diff options
context:
space:
mode:
authorCharles L. Dorian <cldorian@gmail.com>2010-02-18 23:33:15 -0800
committerCharles L. Dorian <cldorian@gmail.com>2010-02-18 23:33:15 -0800
commit26e036cd78c7bdd53c79b94ce3a13cf15f447c32 (patch)
tree1bba14290145c34722fe97c24219ade62d79d34f /src/pkg/math/Makefile
parentad47bb10a28793471e90b8dbfd242f5e1ecd3398 (diff)
downloadgolang-26e036cd78c7bdd53c79b94ce3a13cf15f447c32.tar.gz
math: add Cbrt and Sincos; x87 versions of Sincos, Frexp, Ldexp
Added special condition and benchmarks for Cbrt, Sincos. Took Frexp and Ldexp out of bits.go. R=rsc CC=golang-dev http://codereview.appspot.com/206084 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/math/Makefile')
-rw-r--r--src/pkg/math/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pkg/math/Makefile b/src/pkg/math/Makefile
index 6657724c2..e8c425293 100644
--- a/src/pkg/math/Makefile
+++ b/src/pkg/math/Makefile
@@ -17,12 +17,15 @@ OFILES_386=\
exp2_386.$O\
fabs_386.$O\
floor_386.$O\
+ frexp_386.$O\
fmod_386.$O\
hypot_386.$O\
+ ldexp_386.$O\
log_386.$O\
log1p_386.$O\
modf_386.$O\
sin_386.$O\
+ sincos_386.$O\
sqrt_386.$O\
tan_386.$O\
@@ -37,6 +40,7 @@ ALLGOFILES=\
atanh.go\
atan2.go\
bits.go\
+ cbrt.go\
const.go\
copysign.go\
erf.go\
@@ -46,7 +50,9 @@ ALLGOFILES=\
fdim.go\
floor.go\
fmod.go\
+ frexp.go\
hypot.go\
+ ldexp.go\
log.go\
log1p.go\
modf.go\
@@ -54,6 +60,7 @@ ALLGOFILES=\
pow.go\
pow10.go\
sin.go\
+ sincos.go\
sinh.go\
sqrt.go\
sqrt_port.go\