summaryrefslogtreecommitdiff
path: root/src/pkg/math/Makefile
diff options
context:
space:
mode:
authorCharles L. Dorian <cldorian@gmail.com>2010-02-01 22:21:40 -0800
committerCharles L. Dorian <cldorian@gmail.com>2010-02-01 22:21:40 -0800
commitf1ad43664b0aaa6451fc18aa45dbfb46a2f15668 (patch)
treea7151568ff17feef7ac097f334664920b10bfe37 /src/pkg/math/Makefile
parent10fe284717110a092428c7889831de187737b933 (diff)
downloadgolang-f1ad43664b0aaa6451fc18aa45dbfb46a2f15668.tar.gz
math: add functions; update tests and special cases
Added special cases to comments for asin.go and fabs.go. Added Trunc() to floor.go and floor_386.s. Fixed formatting error in hypot_386.s Added new functions Acosh, Asinh, Atanh, Copysign, Erf, Erfc, Expm1, and Log1p. Added 386 FPU version of Fmod. Added tests, benchmarks, and precision to expected results in all_test.go. Edited makefile so it all compiles. R=rsc CC=golang-dev http://codereview.appspot.com/195052 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/math/Makefile')
-rw-r--r--src/pkg/math/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pkg/math/Makefile b/src/pkg/math/Makefile
index b10df6530..f22808429 100644
--- a/src/pkg/math/Makefile
+++ b/src/pkg/math/Makefile
@@ -15,6 +15,7 @@ OFILES_386=\
exp_386.$O\
fabs_386.$O\
floor_386.$O\
+ fmod_386.$O\
hypot_386.$O\
log_386.$O\
sin_386.$O\
@@ -25,17 +26,24 @@ OFILES=\
$(OFILES_$(GOARCH))
ALLGOFILES=\
+ acosh.go\
asin.go\
+ asinh.go\
atan.go\
+ atanh.go\
atan2.go\
bits.go\
const.go\
+ copysign.go\
+ erf.go\
exp.go\
+ expm1.go\
fabs.go\
floor.go\
fmod.go\
hypot.go\
log.go\
+ log1p.go\
pow.go\
pow10.go\
sin.go\