summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/powerpc/crti.S
blob: 09589ba8bfbfcfc18a8549c900c1fac4b971062c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
	.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)

	.align 2