]> Cypherpunks repositories - gostls13.git/commit
math: 386 FPU functions
authorCharles L. Dorian <cldorian@gmail.com>
Fri, 15 Jan 2010 21:21:36 +0000 (13:21 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 15 Jan 2010 21:21:36 +0000 (13:21 -0800)
commit7f11db5ea9862d2c09e5984109f3092cb3f006fc
treeea4867c29910f0d097b726257a6bb46f18d2a087
parentff68f96df08646b130a6153e600c2b89f5f31c34
math: 386 FPU functions

sin, cos, tan, asin, acos, atan, exp, log, log10,
floor, ceil, and fabs

R=rsc
CC=golang-dev
https://golang.org/cl/189083
17 files changed:
src/pkg/math/Makefile
src/pkg/math/asin_386.s [new file with mode: 0644]
src/pkg/math/asin_decl.go [new file with mode: 0644]
src/pkg/math/atan_386.s [new file with mode: 0644]
src/pkg/math/atan_decl.go [new file with mode: 0644]
src/pkg/math/exp_386.s [new file with mode: 0644]
src/pkg/math/exp_decl.go [new file with mode: 0644]
src/pkg/math/fabs_386.s [new file with mode: 0644]
src/pkg/math/fabs_decl.go [new file with mode: 0644]
src/pkg/math/floor_386.s [new file with mode: 0644]
src/pkg/math/floor_decl.go [new file with mode: 0644]
src/pkg/math/log_386.s [new file with mode: 0644]
src/pkg/math/log_decl.go [new file with mode: 0644]
src/pkg/math/sin_386.s [new file with mode: 0644]
src/pkg/math/sin_decl.go [new file with mode: 0644]
src/pkg/math/tan_386.s [new file with mode: 0644]
src/pkg/math/tan_decl.go [new file with mode: 0644]