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/crtn.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 crt/powerpc/crtn.s (limited to 'crt/powerpc/crtn.s') 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