mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 21:26:46 +00:00
translate-all: Fix missing #elif condition in alloc_code_gen_buffer
This commit is contained in:
parent
b65302b377
commit
a0c39b4996
|
@ -724,6 +724,7 @@ static inline void *alloc_code_gen_buffer(struct uc_struct *uc)
|
||||||
start = 0x40000000ul;
|
start = 0x40000000ul;
|
||||||
# elif defined(__s390x__)
|
# elif defined(__s390x__)
|
||||||
start = 0x90000000ul;
|
start = 0x90000000ul;
|
||||||
|
# elif defined(__mips__)
|
||||||
# if _MIPS_SIM == _ABI64
|
# if _MIPS_SIM == _ABI64
|
||||||
start = 0x68000000ul;
|
start = 0x68000000ul;
|
||||||
# elif _MIPS_SIM == _ABI64
|
# elif _MIPS_SIM == _ABI64
|
||||||
|
|
Loading…
Reference in a new issue