(svn r8933) -Fix [Win64]: rdtsc now uses intrinsic on VC8 (michi_cc)

This commit is contained in:
KUDr
2007-02-27 23:12:45 +00:00
parent eb1af4a65e
commit fbd6a88d02
3 changed files with 10 additions and 12 deletions

View File

@@ -606,10 +606,13 @@ static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep)
return EXCEPTION_EXECUTE_HANDLER;
}
#ifdef _M_AMD64
extern "C" void *_get_save_esp(void);
#endif
static void Win32InitializeExceptions(void)
{
#ifdef _M_AMD64
extern void *_get_save_esp(void);
_safe_esp = _get_save_esp();
#else
_asm {