2011-12-12 Gedare Bloom <gedare@rtems.org>

PR bsps/1988
	* shared/start/start.S: Add _init and _fini to .init and .fini sections
This commit is contained in:
Gedare Bloom
2011-12-12 19:00:48 +00:00
parent e17789bf3d
commit 8bc6b663f1
2 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
2011-12-12 Gedare Bloom <gedare@rtems.org>
PR bsps/1988
* shared/start/start.S: Add _init and _fini to .init and .fini sections
2011-12-12 Gedare Bloom <gedare@rtems.org> 2011-12-12 Gedare Bloom <gedare@rtems.org>
PR bsps/1988 PR bsps/1988

View File

@@ -166,12 +166,16 @@ halted: nop
param_space: param_space:
.space 8 .space 8
.global _fini .section .fini
_fini: .global _fini
_fini:
nop nop
retl
nop nop
.global _init .section .init
_init: .global _init
_init:
nop nop
retl
nop nop