summaryrefslogtreecommitdiff
path: root/ldso/ldso/sh/boot1_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldso/ldso/sh/boot1_arch.h')
-rw-r--r--ldso/ldso/sh/boot1_arch.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/ldso/ldso/sh/boot1_arch.h b/ldso/ldso/sh/boot1_arch.h
deleted file mode 100644
index d1ca6d985..000000000
--- a/ldso/ldso/sh/boot1_arch.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* Any assmbly language/system dependent hacks needed to setup boot1.c so it
- * will work as expected and cope with whatever platform specific wierdness is
- * needed for this architecture. */
-
-asm("" \
-" .text\n" \
-" .globl _dl_boot\n" \
-"_dl_boot:\n" \
-" mov r15, r4\n" \
-" mov.l .L_dl_boot2, r0\n" \
-" bsrf r0\n" \
-" add #4, r4\n" \
-".jmp_loc:\n" \
-" jmp @r0\n" \
-" mov #0, r4 !call _start with arg == 0\n" \
-".L_dl_boot2:\n" \
-" .long _dl_boot2-.jmp_loc\n" \
-" .previous\n" \
-);
-
-#define DL_BOOT(X) static void __attribute__ ((unused)) _dl_boot2 (X)