summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/powerpc/crti.S
blob: a6ea25003184b335705016434ae393f5d117b5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
	.file	"initfini.c"
	
	.section .init
	.align 2
	.globl _init
	.type	_init, @function
_init:
	stwu 1,-32(1)
	mflr 0
	stw 0,36(1)
	
	.align 2
	
	
	.section .fini
	.align 2
	.globl _fini
	.type	_fini, @function
_fini:
	stwu 1,-32(1)
	mflr 0
	stw 0,36(1)