Fix Windows bootstrap: check_sse2 was not DLLEXPORT

db4
Slava Pestov 2008-11-03 07:27:14 -06:00
parent 82e9eedd39
commit 00fc4eb179
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@ DEF(void,set_callstack,(F_STACK_FRAME *to, F_STACK_FRAME *from, CELL length, voi
ret /* return _with new stack_ */
/* cpu.x86.32 calls this */
DEF(bool,check_sse2,()):
DEF(bool,check_sse2,(void)):
push %ebx
mov $1,%eax
cpuid

View File

@ -5,3 +5,4 @@ register CELL rs asm("edi");
#define F_FASTCALL __attribute__ ((regparm (2)))
DLLEXPORT bool check_sse2(void);