diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-26 17:41:34 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-26 17:41:34 -0400 |
commit | bc30aea457c2406b3888df647e5a8af1dfeaadc8 (patch) | |
tree | 27482234fbf2817e3a5520298461502d035f9515 /src/math/x86_64/e_sqrtf.s | |
parent | 6b3d5e508fcf16abe18c163c4c31a47f2d35a306 (diff) | |
download | musl-bc30aea457c2406b3888df647e5a8af1dfeaadc8.tar.gz musl-bc30aea457c2406b3888df647e5a8af1dfeaadc8.tar.xz musl-bc30aea457c2406b3888df647e5a8af1dfeaadc8.zip |
type directives for x86_64 math asm
Diffstat (limited to 'src/math/x86_64/e_sqrtf.s')
-rw-r--r-- | src/math/x86_64/e_sqrtf.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/x86_64/e_sqrtf.s b/src/math/x86_64/e_sqrtf.s index 2c77076b..eec48c60 100644 --- a/src/math/x86_64/e_sqrtf.s +++ b/src/math/x86_64/e_sqrtf.s @@ -1,3 +1,4 @@ .global sqrtf +.type sqrtf,@function sqrtf: sqrtss %xmm0, %xmm0 ret |