2009-05-13 Ulrich Weigand <uweigand@de.ibm.com>
* spu/crtn.S: Add dummy to ensure nothing gets linked at address 0. * spu/crti.S: Remove nop.
This commit is contained in:
parent
5900080d7d
commit
0d1c7d281c
@ -1,3 +1,8 @@
|
|||||||
|
2009-05-13 Ulrich Weigand <uweigand@de.ibm.com>
|
||||||
|
|
||||||
|
* spu/crtn.S: Add dummy to ensure nothing gets linked at address 0.
|
||||||
|
* spu/crti.S: Remove nop.
|
||||||
|
|
||||||
2009-05-08 Nick Clifton <nickc@redhat.com>
|
2009-05-08 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* mn10300/sim.ld: Add missing section names such as .bss.*
|
* mn10300/sim.ld: Add missing section names such as .bss.*
|
||||||
|
@ -46,11 +46,6 @@
|
|||||||
|
|
||||||
.section ".init"
|
.section ".init"
|
||||||
.align 2
|
.align 2
|
||||||
|
|
||||||
# To make sure the address of _init is not zero, because
|
|
||||||
# the default linker entry point is 0.
|
|
||||||
nop
|
|
||||||
|
|
||||||
.global _init
|
.global _init
|
||||||
.type _init, @function
|
.type _init, @function
|
||||||
_init:
|
_init:
|
||||||
|
@ -53,4 +53,12 @@
|
|||||||
|
|
||||||
FUNC_END
|
FUNC_END
|
||||||
|
|
||||||
|
# To ensure nothing is linked at address 0, provide a dummy
|
||||||
|
# .interrupt section. This is in crtn.S to make sure any
|
||||||
|
# user-provided real .interrupt section will get linked
|
||||||
|
# in front of this dummy.
|
||||||
|
.section ".interrupt","ax"
|
||||||
|
.align 2
|
||||||
|
heq $0,$0
|
||||||
|
|
||||||
# end of crtn.S
|
# end of crtn.S
|
||||||
|
Loading…
x
Reference in New Issue
Block a user