Added gnu90 test

work-around : disabled automatic selection of huff0 quad-decoder (see #173)
This commit is contained in:
Yann Collet
2016-05-05 03:01:13 +02:00
parent f6ac47955b
commit 3f8ed50bf1
5 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -1118,7 +1118,7 @@ size_t HUF_decompress (void* dst, size_t dstSize, const void* cSrc, size_t cSrcS
Dtime[1] += Dtime[1] >> 4; Dtime[2] += Dtime[2] >> 3; /* advantage to algorithms using less memory, for cache eviction */
if (Dtime[1] < Dtime[0]) algoNb = 1;
if (Dtime[2] < Dtime[algoNb]) algoNb = 2;
//if (Dtime[2] < Dtime[algoNb]) algoNb = 2;
return decompress[algoNb](dst, dstSize, cSrc, cSrcSize);