From 1e4f1cf154d18d2bd13cd4524a8bbae6786efd02 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 13 Jun 2011 20:28:14 -0400 Subject: remove all .size and .type directives for functions from the asm these are useless and have caused problems for users trying to build with non-gnu tools like tcc's assembler. --- src/setjmp/i386/longjmp.s | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/setjmp/i386/longjmp.s') diff --git a/src/setjmp/i386/longjmp.s b/src/setjmp/i386/longjmp.s index 249d7b4d..b139d9fe 100644 --- a/src/setjmp/i386/longjmp.s +++ b/src/setjmp/i386/longjmp.s @@ -1,7 +1,5 @@ .global _longjmp .global longjmp -.type _longjmp,%function -.type longjmp,%function _longjmp: longjmp: mov 4(%esp),%edx @@ -18,5 +16,3 @@ longjmp: mov %ecx,%esp mov 20(%edx),%ecx jmp *%ecx -.size _longjmp,.-_longjmp -.size longjmp,.-longjmp -- cgit v1.2.1