Skip to content

Commit 7caa3bb

Browse files
authored
Merge pull request #48 from chewxy/fix-assembly
fix recursive ARM asm call to remainder; match archRemainder for ARM64
2 parents 8e68659 + 1842034 commit 7caa3bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stubs_arm.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ TEXT ·archLog(SB),NOSPLIT,$0
1414

1515
// func archRemainder(x, y float32) float32
1616
TEXT ·archRemainder(SB),NOSPLIT,$0
17-
B ·archRemainder(SB)
17+
B ·remainder(SB)
1818

1919
// func archSqrt(x float32) float32
2020
TEXT ·archSqrt(SB),NOSPLIT,$0

stubs_arm64.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
TEXT ·archLog(SB),NOSPLIT,$0
55
B ·log(SB)
66

7-
// func archRemainder(x float32) float32 // TODO
7+
// func archRemainder(x, y float32) float32 // TODO
88
// TEXT ·archRemainderTODO(SB),NOSPLIT,$0
99
// B ·remainder(SB)

0 commit comments

Comments
 (0)