diff options
Diffstat (limited to 'src/math/x86_64/atan2l.s')
-rw-r--r-- | src/math/x86_64/atan2l.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/x86_64/atan2l.s b/src/math/x86_64/atan2l.s new file mode 100644 index 00000000..e5f0a3de --- /dev/null +++ b/src/math/x86_64/atan2l.s @@ -0,0 +1,7 @@ +.global atan2l +.type atan2l,@function +atan2l: + fldt 8(%rsp) + fldt 24(%rsp) + fpatan + ret |