Skip to content
Snippets Groups Projects
Unverified Commit 7caa3bba authored by Patricio Whittingslow's avatar Patricio Whittingslow Committed by GitHub
Browse files

Merge pull request #48 from chewxy/fix-assembly

fix recursive ARM asm call to remainder; match archRemainder for ARM64
parents 8e68659b 18420349
No related branches found
Tags v1.11.0
No related merge requests found
......@@ -14,7 +14,7 @@ TEXT ·archLog(SB),NOSPLIT,$0
// func archRemainder(x, y float32) float32
TEXT ·archRemainder(SB),NOSPLIT,$0
B ·archRemainder(SB)
B ·remainder(SB)
// func archSqrt(x float32) float32
TEXT ·archSqrt(SB),NOSPLIT,$0
......
......@@ -4,6 +4,6 @@
TEXT ·archLog(SB),NOSPLIT,$0
B ·log(SB)
// func archRemainder(x float32) float32 // TODO
// func archRemainder(x, y float32) float32 // TODO
// TEXT ·archRemainderTODO(SB),NOSPLIT,$0
// B ·remainder(SB)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment