Compiler 64bits V12 bug on line "d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c;"

Started by frankie, October 28, 2023, 03:21:39 PM

Previous topic - Next topic

frankie

Attached an offending sample project reduced to minimal
The line:
d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c;
Generate a compiler bug.
The workaround:

if (dst_pos < (TDEFL_MAX_MATCH_LEN - 1))
{
//d->m_dict[TDEFL_LZ_DICT_SIZE + dst_pos] = c; //Compiler failure line! Compiler BUG
int appo = TDEFL_LZ_DICT_SIZE + dst_pos;
d->m_dict[appo] = c;
}

The bug affects only the 64bits targets. 32bits targets aren't affected by the bug.
"It is better to be hated for what you are than to be loved for what you are not." - Andre Gide