ObjFW  Check-in [84aa6556f9]

Overview
Comment:Fix a typo that broke big endian MIPS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 84aa6556f99facf347a0353f227658964261045ef487bc79539ede5e9f477278
User & Date: js on 2016-02-07 14:09:11
Other Links: manifest | tags
Context
2016-02-07
20:34
Add lookup-asm-mips64-elf.S check-in: 68d4a17534 user: js tags: trunk
14:09
Fix a typo that broke big endian MIPS check-in: 84aa6556f9 user: js tags: trunk
2016-01-20
00:25
PLATFORMS.md: Add ARM64/ELF to "Forwarding" check-in: 7296d769bd user: js tags: trunk
Changes

Modified src/runtime/lookup-asm/lookup-asm-mips-elf.S from [660e3acd88] to [375ffd1359].

28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
\name:
	beqz	$a0, 0f

	lw	$t0, 0($a0)
	lw	$t0, 32($t0)

.Lmain_\name:
#ifdef OF_BIGENDIAN
# ifdef OF_SELUID24
	lbu	$t1, 1($a1)
# endif
	lbu	$t2, 2($a1)
	lbu	$t3, 3($a1)
#else
# ifdef OF_SELUID24







|







28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
\name:
	beqz	$a0, 0f

	lw	$t0, 0($a0)
	lw	$t0, 32($t0)

.Lmain_\name:
#ifdef OF_BIG_ENDIAN
# ifdef OF_SELUID24
	lbu	$t1, 1($a1)
# endif
	lbu	$t2, 2($a1)
	lbu	$t3, 3($a1)
#else
# ifdef OF_SELUID24