summaryrefslogtreecommitdiff
path: root/src/pkg/math/Makefile
diff options
context:
space:
mode:
authorCharles L. Dorian <cldorian@gmail.com>2010-02-05 00:41:30 -0800
committerCharles L. Dorian <cldorian@gmail.com>2010-02-05 00:41:30 -0800
commitc4fe3a619a726f15ead97e9510da511de32a7f12 (patch)
tree32e36f6c18604aa1bf297ba9dc8949894f144ccc /src/pkg/math/Makefile
parentb9a7e86188d043b45dddb6475379629730fb13f8 (diff)
downloadgolang-c4fe3a619a726f15ead97e9510da511de32a7f12.tar.gz
math: special cases for Modf, Frexp and Ldexp; added Modf_386
Also moved Modf from bits.go into modf.go and added timing tests. R=rsc CC=golang-dev http://codereview.appspot.com/202042 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/math/Makefile')
-rw-r--r--src/pkg/math/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pkg/math/Makefile b/src/pkg/math/Makefile
index f22808429..0e89df7e7 100644
--- a/src/pkg/math/Makefile
+++ b/src/pkg/math/Makefile
@@ -18,6 +18,7 @@ OFILES_386=\
fmod_386.$O\
hypot_386.$O\
log_386.$O\
+ modf_386.$O\
sin_386.$O\
sqrt_386.$O\
tan_386.$O\
@@ -44,6 +45,7 @@ ALLGOFILES=\
hypot.go\
log.go\
log1p.go\
+ modf.go\
pow.go\
pow10.go\
sin.go\