diff options
author | nsz <nsz@port70.net> | 2012-03-19 10:20:24 +0100 |
---|---|---|
committer | nsz <nsz@port70.net> | 2012-03-19 10:20:24 +0100 |
commit | 9322344fa4c47a64361a81eda1b1930cd4341626 (patch) | |
tree | 94a641e60aef228d799035dc7c4a889ff39e4b3a /src/math/i386/atan2l.s | |
parent | 0627e58af8514967372a8ff703e7a86c2571acc2 (diff) | |
parent | 58ff9e8eaf99f2294232be860daa2ca6f3674faf (diff) | |
download | musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.gz musl-9322344fa4c47a64361a81eda1b1930cd4341626.tar.xz musl-9322344fa4c47a64361a81eda1b1930cd4341626.zip |
Merge branch 'master' of git://git.etalabs.net/musl
Diffstat (limited to 'src/math/i386/atan2l.s')
-rw-r--r-- | src/math/i386/atan2l.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/i386/atan2l.s b/src/math/i386/atan2l.s new file mode 100644 index 00000000..adf6e10a --- /dev/null +++ b/src/math/i386/atan2l.s @@ -0,0 +1,7 @@ +.global atan2l +.type atan2l,@function +atan2l: + fldt 4(%esp) + fldt 16(%esp) + fpatan + ret |