ObjFW  Check-in [eed4e94119]

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 | 1.1
Files: files | file ages | folders
SHA3-256: eed4e941193effdc1e3d154c55828daf564dbd3957b352034f5e32110a0fca83
User & Date: js on 2024-08-30 20:43:58
Other Links: branch diff | manifest | tags
Context
2024-08-31
00:15
objfw-config: Don't reproduce flags from configure check-in: 0050fce022 user: js tags: 1.1
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
2024-08-26
21:12
Fix compiling with DJGPP check-in: c540d53637 user: js tags: 1.1
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