mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-10 14:41:48 +00:00
f327428475
the VM compiler uses SSE for floating-point ops when possible
10 lines
224 B
C++
10 lines
224 B
C++
#include "vm_local.h"
|
|
|
|
int VM_CallCompiled( vm_t *vm, int *args ) {
|
|
Com_Error(ERR_FATAL, "VM compiler N/A");
|
|
return 0;
|
|
}
|
|
|
|
void VM_Compile( vm_t *vm, const vmHeader_t *header ) {
|
|
Com_Error(ERR_FATAL, "VM compiler N/A");
|
|
}
|