From c6b984cf26aa109656433dd274d33146e44b741e Mon Sep 17 00:00:00 2001 From: icculus Date: Tue, 15 Sep 2009 06:30:00 +0000 Subject: Fixed amd64 JIT output bug. Partially fixes Bugzilla #4271. git-svn-id: svn://svn.icculus.org/quake3/trunk@1625 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/vm_x86_64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/vm_x86_64.c b/code/qcommon/vm_x86_64.c index d2b3683..e5ef455 100644 --- a/code/qcommon/vm_x86_64.c +++ b/code/qcommon/vm_x86_64.c @@ -246,7 +246,7 @@ void emit(const char* fmt, ...) #else #define JMPIARG \ emit("movq $%lu, %%rax", vm->codeBase+vm->instructionPointers[iarg]); \ - emit("jmpq *%rax"); + emit("jmpq *%%rax"); #endif // integer compare and jump -- cgit v1.2.3