update aarch64 test to xenial

in an attempt to circumvent the `ld` bug
This commit is contained in:
Yann Collet
2018-12-21 15:08:48 -08:00
parent 8f35c7f94c
commit c8d1fda982
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ size_t FSE_buildCTable_wksp(FSE_CTable* ct,
/* symbol start positions */
{ U32 u;
cumul[0] = 0;
for (u=1; u<=maxSymbolValue+1; u++) {
for (u=1; u <= maxSymbolValue+1; u++) {
if (normalizedCounter[u-1]==-1) { /* Low proba symbol */
cumul[u] = cumul[u-1] + 1;
tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1);