- switch from ASMJIT_ARCH_X64 to ASMJIT_ARCH_64BIT when checking if we need to use 64-bit pointers

This commit is contained in:
Magnus Norddahl 2018-09-18 18:05:53 +02:00
commit 05ac219ba6
3 changed files with 5 additions and 5 deletions

View file

@ -199,7 +199,7 @@ void JitCompiler::EmitRET()
break;
}
case REGT_POINTER:
#ifdef ASMJIT_ARCH_X64
#ifdef ASMJIT_ARCH_64BIT
if (regtype & REGT_KONST)
cc.mov(x86::qword_ptr(location), ToMemAddress(konsta[regnum].v));
else