qcommon: vm: sparc, like 386, doesn't need var-args conversion.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ludwig Nussel 2009-03-02 17:29:35 +00:00
parent 17a81ff7c9
commit 30c44b1a87
1 changed files with 1 additions and 1 deletions

View File

@ -765,7 +765,7 @@ intptr_t QDECL VM_Call( vm_t *vm, int callnum, ... ) {
args[4], args[5], args[6], args[7],
args[8], args[9]);
} else {
#if id386 // i386 calling convention doesn't need conversion
#if id386 || idsparc // i386/sparc calling convention doesn't need conversion
#ifndef NO_VM_COMPILED
if ( vm->compiled )
r = VM_CallCompiled( vm, (int*)&callnum );