From e22c2d3ee6c436ca69aa07d52943bf2808a22aac Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 26 Jun 2011 15:52:37 -0400 Subject: use .type directives for math asm (needed for dynamic linking to work) --- src/math/i386/e_exp.s | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/math/i386/e_exp.s') diff --git a/src/math/i386/e_exp.s b/src/math/i386/e_exp.s index d6c54a30..c50abc5e 100644 --- a/src/math/i386/e_exp.s +++ b/src/math/i386/e_exp.s @@ -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) -- cgit v1.2.1