blob: 39dee38004d934f77fe97375d2277d840c8a3a90 [file] [log] [blame]
Rich Felker63150042012-07-11 04:22:13 -04001.set noreorder
2
3.section .init
4.global _init
Rich Felker967bcbf2015-05-25 16:02:49 -04005.type _init,@function
Rich Felker32e7bd72012-08-05 14:12:10 -04006.align 2
Rich Felker63150042012-07-11 04:22:13 -04007_init:
8 subu $sp,$sp,32
9 sw $gp,24($sp)
10 sw $ra,28($sp)
11
12.section .fini
13.global _fini
Rich Felker967bcbf2015-05-25 16:02:49 -040014.type _fini,@function
Rich Felker32e7bd72012-08-05 14:12:10 -040015.align 2
Rich Felker63150042012-07-11 04:22:13 -040016_fini:
17 subu $sp,$sp,32
18 sw $gp,24($sp)
19 sw $ra,28($sp)