diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-23 13:31:16 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-23 13:31:16 -0500 |
commit | 0375c68fe7ed39b1173b62574936152645624078 (patch) | |
tree | 21c1fa4e71978e6ad9d99dc0b33f682bdc8012e5 /crt/powerpc/crti.s | |
parent | 7538708f8b3000df2ec4e3022a1400b458123224 (diff) | |
download | musl-0375c68fe7ed39b1173b62574936152645624078.tar.gz |
add missing startfiles for powerpc
Diffstat (limited to 'crt/powerpc/crti.s')
-rw-r--r-- | crt/powerpc/crti.s | 15 |
1 files changed, 15 insertions, 0 deletions
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) |