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/x86_64/setjmp.s | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/setjmp/x86_64/setjmp.s') diff --git a/src/setjmp/x86_64/setjmp.s b/src/setjmp/x86_64/setjmp.s index faecd353..d5ff113a 100644 --- a/src/setjmp/x86_64/setjmp.s +++ b/src/setjmp/x86_64/setjmp.s @@ -2,9 +2,6 @@ .global __setjmp .global _setjmp .global setjmp -.type __setjmp,%function -.type _setjmp,%function -.type setjmp,%function __setjmp: _setjmp: setjmp: @@ -20,6 +17,3 @@ setjmp: mov %rdx,56(%rdi) xor %rax,%rax /* always return 0 */ ret -.size __setjmp,.-__setjmp -.size _setjmp,.-_setjmp -.size setjmp,.-setjmp -- cgit v1.2.1