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>
PR bsps/1988

View File

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