More unused LZMA SDK code.

This commit is contained in:
Ryan C. Gordon 2017-07-17 15:50:04 -04:00
parent 1d616dcaf1
commit 0bda50c276
1 changed files with 0 additions and 15 deletions

View File

@ -1571,21 +1571,6 @@ static Bool CPU_Is_InOrder()
return True;
}
#if !defined(MY_CPU_AMD64) && defined(_WIN32)
#include <windows.h>
static Bool CPU_Sys_Is_SSE_Supported()
{
OSVERSIONINFO vi;
vi.dwOSVersionInfoSize = sizeof(vi);
if (!GetVersionEx(&vi))
return False;
return (vi.dwMajorVersion >= 5);
}
#define CHECK_SYS_SSE_SUPPORT if (!CPU_Sys_Is_SSE_Supported()) return False;
#else
#define CHECK_SYS_SSE_SUPPORT
#endif
#endif
/* 7zStream.c -- 7z Stream functions