From 0375c68fe7ed39b1173b62574936152645624078 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 23 Nov 2012 13:31:16 -0500 Subject: add missing startfiles for powerpc --- crt/powerpc/crti.s | 15 +++++++++++++++ crt/powerpc/crtn.s | 13 +++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 crt/powerpc/crti.s create mode 100644 crt/powerpc/crtn.s (limited to 'crt') diff --git a/crt/powerpc/crti.s b/crt/powerpc/crti.s new file mode 100644 index 00000000..60461ca4 --- /dev/null +++ b/crt/powerpc/crti.s @@ -0,0 +1,15 @@ +.section .init +.align 2 +.global _init +_init: + stwu 1,-32(1) + mflr 0 + stw 0,36(1) + +.section .fini +.align 2 +.global _fini +_fini: + stwu 1,-32(1) + mflr 0 + stw 0,36(1) diff --git a/crt/powerpc/crtn.s b/crt/powerpc/crtn.s new file mode 100644 index 00000000..2d14a6f0 --- /dev/null +++ b/crt/powerpc/crtn.s @@ -0,0 +1,13 @@ +.section .init +.align 2 + lwz 0,36(1) + addi 1,1,32 + mtlr 0 + blr + +.section .fini +.align 2 + lwz 0,36(1) + addi 1,1,32 + mtlr 0 + blr -- cgit v1.2.1