From e95f1f210629574e819019ddb38ba0e6906291da Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 6 Jan 2006 00:04:05 +0000 Subject: [PATCH] * Fix to the gcc4/-O0 x86 JIT compiler bug --- code/qcommon/vm_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c index 38593c6b..15e99184 100644 --- a/code/qcommon/vm_x86.c +++ b/code/qcommon/vm_x86.c @@ -229,7 +229,7 @@ void AsmCall( void ) { "doret: \n\t" \ " ret \n\t" \ : "=rm" (callSyscallNum), "=rm" (callProgramStack), "=rm" (callOpStack) \ - : "rm" (instructionPointers) \ + : "m" (instructionPointers) \ : "ax", "di", "si", "cx" \ ); }