Removed #pragma intrinsic(...), it's not needed anymore.

This commit is contained in:
kobalicek
2016-01-12 23:03:36 +01:00
parent fd91ba5fee
commit 8f52f1ef87
2 changed files with 0 additions and 4 deletions

View File

@@ -23,10 +23,8 @@
// [Dependencies - Windows]
#if ASMJIT_OS_WINDOWS
// `_InterlockedCompareExchange` is only available as intrinsic (MS Compiler).
# if defined(_MSC_VER) && _MSC_VER >= 1400
# include <intrin.h>
# pragma intrinsic(_InterlockedCompareExchange)
# else
# define _InterlockedCompareExchange InterlockedCompareExchange
# endif // _MSC_VER
@@ -70,7 +68,6 @@ uint32_t Utils::getTickCount() {
}
double freqDouble = double(qpf.QuadPart) / 1000.0;
Utils_hiResFreq = freqDouble;
_InterlockedCompareExchange((LONG*)&Utils_hiResTicks, 1, 0);

View File

@@ -13,7 +13,6 @@
#if defined(_MSC_VER) && _MSC_VER >= 1400
# include <intrin.h>
# pragma intrinsic(_BitScanForward)
#endif // ASMJIT_OS_WINDOWS
// [Api-Begin]