Browse Source

type directives for x86_64 math asm

rs-1.0
Rich Felker 15 years ago
parent
commit
bc30aea457
  1. 1
      src/math/x86_64/e_sqrt.s
  2. 1
      src/math/x86_64/e_sqrtf.s

1
src/math/x86_64/e_sqrt.s

@ -1,3 +1,4 @@
.global sqrt
.type sqrt,@function
sqrt: sqrtsd %xmm0, %xmm0
ret

1
src/math/x86_64/e_sqrtf.s

@ -1,3 +1,4 @@
.global sqrtf
.type sqrtf,@function
sqrtf: sqrtss %xmm0, %xmm0
ret

Loading…
Cancel
Save