btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / system / glue / arch / ppc / crtn.S
blobb9666c9b023101721bdc642d9bfb8f6d2cec3f29
1 /*
2  * Copyright 2005, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
6 /**     This file contains the final part of the ".init" and ".fini" sections in
7  *      the ELF executable. It is tightly connected to crti.S.
8  *      Have a look at crti.S to find a description of what happens here.
9  */
11 .section .init
12         // the image ID and program args are still on the stack
13         bl      __haiku_init_after
14         blr
16 .section .fini
17         // the image ID and program args are still on the stack
18         bl      __haiku_term_after
19         blr