summaryrefslogtreecommitdiff
path: root/ldso/ldso/cris/boot1_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldso/ldso/cris/boot1_arch.h')
-rw-r--r--ldso/ldso/cris/boot1_arch.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/ldso/ldso/cris/boot1_arch.h b/ldso/ldso/cris/boot1_arch.h
deleted file mode 100644
index bf7714539..000000000
--- a/ldso/ldso/cris/boot1_arch.h
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * 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(X) static void __attribute__ ((unused)) _dl_boot2 (X)