use .type directives for math asm (needed for dynamic linking to work)
[musl] / src / math / i386 / e_exp.s
index d6c54a3..c50abc5 100644 (file)
@@ -1,4 +1,5 @@
 .global expf
+.type expf,@function
 expf:
        mov 4(%esp),%eax
        flds 4(%esp)
@@ -8,6 +9,7 @@ expf:
        jmp 0f
 
 .global exp
+.type exp,@function
 exp:
        mov 8(%esp),%eax
        fldl 4(%esp)