Skip to content

Commit ae34788

Browse files
authored
Create sin_arm64.s
1 parent 13137fb commit ae34788

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

math32/sin_arm64.s

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// This file contains a subset of functions of the std
2+
// math library from Go, but converted from float64 to float32.
3+
4+
// Copyright 2010 The Go Authors. All rights reserved.
5+
// Use of this source code is governed by a BSD-style
6+
// license that can be found in the LICENSE file.
7+
8+
#include "textflag.h"
9+
10+
TEXT ·Sin(SB),NOSPLIT,$0
11+
B ·sin(SB)
12+
13+
TEXT ·Cos(SB),NOSPLIT,$0
14+
B ·cos(SB)

0 commit comments

Comments
 (0)