summaryrefslogtreecommitdiff
path: root/ldso/ldso/cris/dl-startup.h
blob: 9b4a8b52ed0b0ee5da28a3d4626068ed8845eb34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * This code fix the stack pointer so that the dynamic linker
 * can find argc, argv and auxvt (Auxillary Vector Table).
 */
asm(""					\
"	.text\n"			\
"	.globl _dl_boot\n"		\
"	.type _dl_boot,@function\n"	\
"_dl_boot:\n"				\
"	move.d $sp,$r10\n"		\
"	move.d $pc,$r9\n"		\
"	add.d _dl_boot2 - ., $r9\n"	\
"	jsr $r9\n"			\
);

#define _dl_boot _dl_boot2
#define LD_BOOT(X) static void * __attribute__ ((unused)) _dl_boot(X)