Skip to content

Commit

Permalink
remove unused cpu check
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Mar 18, 2018
1 parent f45d0d1 commit f76d10d
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/Misc.h
Expand Up @@ -6,22 +6,6 @@
#include <sstream>
#include <vector>

#if defined(WIN) && !defined(__GNUC__)
#define x86_cpuid(func,af,bf,cf,df) \
do {\
__asm mov eax, func\
__asm cpuid\
__asm mov af, eax\
__asm mov bf, ebx\
__asm mov cf, ecx\
__asm mov df, edx\
} while(0)
#else
#define x86_cpuid(func,af,bf,cf,df) \
__asm__ __volatile ("cpuid":\
"=a" (af), "=b" (bf), "=c" (cf), "=d" (df) : "a" (func));
#endif

//Linear interpolation
template <typename T> inline T LinearInterpolate(T val1, T val2, T lowerCoord, T upperCoord, T coord)
{
Expand Down

0 comments on commit f76d10d

Please sign in to comment.