URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [uClibc/] [ldso/] [ldso/] [m68k/] [resolve.S] - Rev 1325
Go to most recent revision | Compare with Previous | Blame | View Log
/*
* These are various helper routines that are needed to run an ELF image.
*/
.text
.even
.globl _dl_linux_resolve
.type _dl_linux_resolve,@function
_dl_linux_resolve:
moveml %a0/%a1,%sp@-
#ifdef __PIC__
bsrl _dl_linux_resolver@PLTPC
#else
jbsr _dl_linux_resolver
#endif
moveml %sp@+,%a0/%a1
addql #8,%sp
jmp @(%d0)
.LFE2:
.size _dl_linux_resolve,.LFE2-_dl_linux_resolve
Go to most recent revision | Compare with Previous | Blame | View Log