summaryrefslogtreecommitdiff
path: root/crt/mips64/crtn.s
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-03-06 17:41:56 +0000
committerRich Felker <dalias@aerifal.cx>2016-03-06 17:41:56 +0000
commit83933573aff71a5d178ab71912f177d2d844e63e (patch)
tree3c7057d0c83c0030b8a6c0405f1b2797fbbcf450 /crt/mips64/crtn.s
parent71392a91c333d47b6b3c8f99c897e3b5a7eb6d58 (diff)
downloadmusl-83933573aff71a5d178ab71912f177d2d844e63e.tar.gz
add mips64 port
patch by Mahesh Bodapati and Jaydeep Patil of Imagination Technologies.
Diffstat (limited to 'crt/mips64/crtn.s')
-rw-r--r--crt/mips64/crtn.s13
1 files changed, 13 insertions, 0 deletions
diff --git a/crt/mips64/crtn.s b/crt/mips64/crtn.s
new file mode 100644
index 00000000..f3930b24
--- /dev/null
+++ b/crt/mips64/crtn.s
@@ -0,0 +1,13 @@
+.set noreorder
+
+.section .init
+ ld $gp,16($sp)
+ ld $ra,24($sp)
+ j $ra
+ daddu $sp,$sp,32
+
+.section .fini
+ ld $gp,16($sp)
+ ld $ra,24($sp)
+ j $ra
+ daddu $sp,$sp,32