- no runtime check for sse on mac (since the asm fails) with: error: can't find a register in class 'BREG' while reloading 'asm'

This commit is contained in:
Mark Vejvoda 2012-10-29 20:37:00 +00:00
parent 6835eb534c
commit 1503956c55

View File

@ -563,7 +563,7 @@ int mainSetup(int argc, char **argv) {
snprintf(szBuf,8096,"Error detected, your CPU does not seem to support SSE: [%d]\n",has_SSE);
throw megaglest_runtime_error(szBuf);
}
#elif defined (__GNUC__)
#elif defined (__GNUC__) && !defined(__APPLE__)
if(SystemFlags::VERBOSE_MODE_ENABLED) printf("In [%s::%s Line: %d] About to validate SSE support\n",__FILE__,__FUNCTION__,__LINE__);