Skip to content

Commit

Permalink
Merge pull request #15 from Masquerade0097/patch-1
Browse files Browse the repository at this point in the history
Update stubs_s390x.s
  • Loading branch information
chewxy committed May 29, 2020
2 parents c7ee986 + e371f32 commit 9dce16d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions stubs_s390x.s
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
#include "textflag.h"

// func Exp(x float32) float32
TEXT Exp(SB),NOSPLIT,$0
BR exp(SB)
TEXT ·Exp(SB),NOSPLIT,$0
BR ·exp(SB)

// func Log(x float32) float32
TEXT Log(SB),NOSPLIT,$0
BR log(SB)
TEXT ·Log(SB),NOSPLIT,$0
BR ·log(SB)

// func Remainder(x, y float32) float32
TEXT Remainder(SB), NOSPLIT, $0
TEXT ·Remainder(SB),NOSPLIT,$0
BR ·remainder(SB)

// func Sqrt(x float32) float32
TEXT Sqrt(SB),NOSPLIT,$0
BR sqrt(SB)

TEXT ·Sqrt(SB),NOSPLIT,$0
BR ·sqrt(SB)

0 comments on commit 9dce16d

Please sign in to comment.