aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/vm_x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/qcommon/vm_x86.c')
-rw-r--r--code/qcommon/vm_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/vm_x86.c b/code/qcommon/vm_x86.c
index 38593c6..15e9918 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" \
);
}