From: Rich Felker Date: Sun, 26 Jun 2011 21:41:34 +0000 (-0400) Subject: type directives for x86_64 math asm X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=bc30aea457c2406b3888df647e5a8af1dfeaadc8 type directives for x86_64 math asm --- diff --git a/src/math/x86_64/e_sqrt.s b/src/math/x86_64/e_sqrt.s index 64de7d6a..d3c609f9 100644 --- a/src/math/x86_64/e_sqrt.s +++ b/src/math/x86_64/e_sqrt.s @@ -1,3 +1,4 @@ .global sqrt +.type sqrt,@function sqrt: sqrtsd %xmm0, %xmm0 ret 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