ObjFW  Check-in [7eca061e3a]

Overview
Comment:forwarding: Use .section .init_array on 3DS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7eca061e3aa1f7400d8b28a36e85373b2f8b96e16ae8a4bdb677af940f5eb342
User & Date: js on 2016-03-20 19:06:50
Other Links: manifest | tags
Context
2016-03-20
19:16
PLATFORMS.md: Add Nintendo 3DS check-in: c0d11dd852 user: js tags: trunk
19:06
forwarding: Use .section .init_array on 3DS check-in: 7eca061e3a user: js tags: trunk
18:34
OFApplication: Clean up terminateWithStatus: check-in: 6d6069af92 user: js tags: trunk
Changes

Modified src/forwarding/forwarding-arm-elf.S from [10f8e661a3] to [c82d5a043f].

146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
sel_forwardingTargetForSelector_$indirect_.L0:
	.long sel_forwardingTargetForSelector_-(.L0+8)
sel_forwardingTargetForSelector_$indirect_.L1:
	.long sel_forwardingTargetForSelector_-(.L1+8)
module$indirect_.L2:
	.long module-(.L2+8)

#ifndef OF_NINTENDO_DS
.section .ctors, "aw", %progbits
#else
.section .init_array, "aw", %init_array
#endif
	.long init

.section .rodata







|







146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
sel_forwardingTargetForSelector_$indirect_.L0:
	.long sel_forwardingTargetForSelector_-(.L0+8)
sel_forwardingTargetForSelector_$indirect_.L1:
	.long sel_forwardingTargetForSelector_-(.L1+8)
module$indirect_.L2:
	.long module-(.L2+8)

#if !defined(OF_NINTENDO_DS) && !defined(OF_NINTENDO_3DS)
.section .ctors, "aw", %progbits
#else
.section .init_array, "aw", %init_array
#endif
	.long init

.section .rodata