diff options
Diffstat (limited to 'src/pkg/math/sqrt_amd64.s')
-rw-r--r-- | src/pkg/math/sqrt_amd64.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/math/sqrt_amd64.s b/src/pkg/math/sqrt_amd64.s index 5972fafe8..e98daebf9 100644 --- a/src/pkg/math/sqrt_amd64.s +++ b/src/pkg/math/sqrt_amd64.s @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. // func Sqrt(x float64) float64 -TEXT math·Sqrt(SB),7,$0 +TEXT ·Sqrt(SB),7,$0 MOVSD x+0(FP), X0 SQRTSD X0, X0 MOVSD X0, r+8(FP) |