increased maximum memory size for 64-bits bench to 16 GB

This commit is contained in:
Yann Collet 2016-08-25 22:54:13 +02:00
parent 0d59a6f73a
commit 0baa64a763

View File

@ -58,7 +58,7 @@
#define MB *(1 <<20)
#define GB *(1U<<30)
static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t)(1ULL << ((sizeof(size_t)*8)-31));
static const size_t maxMemory = (sizeof(size_t)==4) ? (2 GB - 64 MB) : (size_t)(1ULL << ((sizeof(size_t)*8)-30));
static U32 g_compressibilityDefault = 50;