[quake3-commits] r1625 - trunk/code/qcommon

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Sep 15 02:30:00 EDT 2009


Author: icculus
Date: 2009-09-15 02:30:00 -0400 (Tue, 15 Sep 2009)
New Revision: 1625

Modified:
   trunk/code/qcommon/vm_x86_64.c
Log:
Fixed amd64 JIT output bug.

  Partially fixes Bugzilla #4271.


Modified: trunk/code/qcommon/vm_x86_64.c
===================================================================
--- trunk/code/qcommon/vm_x86_64.c	2009-09-15 06:28:35 UTC (rev 1624)
+++ trunk/code/qcommon/vm_x86_64.c	2009-09-15 06:30:00 UTC (rev 1625)
@@ -246,7 +246,7 @@
 #else
 #define JMPIARG \
 	emit("movq $%lu, %%rax", vm->codeBase+vm->instructionPointers[iarg]); \
-	emit("jmpq *%rax");
+	emit("jmpq *%%rax");
 #endif
  
 // integer compare and jump



More information about the quake3-commits mailing list