mirror of
git://git.musl-libc.org/musl
synced 2024-12-20 13:51:47 +00:00
63caf1d207
i386 and x86_64 versions already had the .text directive; other archs did not. normally, top-level (file scope) __asm__ starts in the .text section anyway, but problems were reported with some versions of clang, and it seems preferable to set it explicitly anyway, at least for the sake of consistency between archs.
18 lines
335 B
C
18 lines
335 B
C
__asm__(
|
|
".text \n"
|
|
".global " START " \n"
|
|
".align 2 \n"
|
|
START ": \n"
|
|
" add r19, r0, r0 \n"
|
|
" ori r5, r1, 0 \n"
|
|
"1: mfs r6, rpc \n"
|
|
".weak _DYNAMIC \n"
|
|
".hidden _DYNAMIC \n"
|
|
" addik r6, r6, _GLOBAL_OFFSET_TABLE_+8 \n"
|
|
" addik r6, r6, _DYNAMIC@GOTOFF \n"
|
|
" andi r1, r1, -8 \n"
|
|
" addik r1, r1, -8 \n"
|
|
" bri " START "_c \n"
|
|
" nop \n"
|
|
);
|