diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-03-16 23:19:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-03-16 23:19:36 +0000 |
commit | 3ac8cf81beaef80a05b0e99fb381a5ed08f51144 (patch) | |
tree | 0d3a03396c63ecc529b39d580cc8896929596417 | |
parent | 56066903008e5e8ae1eed96b39240cff1066c5ae (diff) |
make it compile again
-rw-r--r-- | ldso/ldso/sparc/resolve.S | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/ldso/ldso/sparc/resolve.S b/ldso/ldso/sparc/resolve.S index a21facfbc..253400ae8 100644 --- a/ldso/ldso/sparc/resolve.S +++ b/ldso/ldso/sparc/resolve.S @@ -1,25 +1,22 @@ /* * These are various helper routines that are needed to run an ELF image. */ -#define COMPILE_ASM -#include "dl-sysdep.h" .text - .align 16 +.align 16 .globl _dl_linux_resolve +.type _dl_linux_resolve,#function _dl_linux_resolve: /* - * Call the resolver - pass the address of the PLT so that we can + * Call the resolver - pass the address of the PLT so that we can * figure out which module we are in. */ mov %o7,%o1 - call _dl_linux_resolver + call _dl_linux_resolver mov %g1,%o0 jmpl %o0,%o7 restore .LFE2: - - .type _dl_linux_resolve,#function .size _dl_linux_resolve,.LFE2-_dl_linux_resolve |