ObjFW  Check-in [238f978fff]

Overview
Comment:forwarding-arm64-elf.S: Fix padding with 4

This was an accidental typo that was never caught because it's in the
padding, so it doesn't matter. But it's cleaner to have 0 there.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 238f978fff04e4b30044c2fc6467115509a3a104c43f360f67e5170b0a129eba
User & Date: js on 2024-08-30 20:43:47
Other Links: manifest | tags
Context
2024-08-31
00:11
objfw-config: Don't reproduce flags from configure check-in: 538ceacc2f user: js tags: trunk
2024-08-30
20:43
forwarding-arm64-elf.S: Fix padding with 4 check-in: eed4e94119 user: js tags: 1.1
20:43
forwarding-arm64-elf.S: Fix padding with 4 check-in: 238f978fff user: js tags: trunk
20:37
PLATFORMS.md: Add ARM64/Win64 to forwarding check-in: 514c38d5f7 user: js tags: trunk
Changes

Modified src/forwarding/forwarding-arm64-elf.S from [8e71cd30e4] to [36edd70f90].

124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
.section .data
.Lsel_forwardingTargetForSelector_:
	.xword .Lstr_forwardingTargetForSelector_, 0
	.xword 0, 0
.Lsymtab:
	.xword 0, .Lsel_forwardingTargetForSelector_
	.short 0, 0
	.long 4
	.xword 0
.Lmodule:
	.xword 8, 32, 0, .Lsymtab

#if defined(OF_LINUX) || defined(OF_HAIKU) || defined(OF_HURD)
.section .note.GNU-stack, "", %progbits
#endif







|







124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
.section .data
.Lsel_forwardingTargetForSelector_:
	.xword .Lstr_forwardingTargetForSelector_, 0
	.xword 0, 0
.Lsymtab:
	.xword 0, .Lsel_forwardingTargetForSelector_
	.short 0, 0
	.long 0
	.xword 0
.Lmodule:
	.xword 8, 32, 0, .Lsymtab

#if defined(OF_LINUX) || defined(OF_HAIKU) || defined(OF_HURD)
.section .note.GNU-stack, "", %progbits
#endif