Line
|
checksum += ( unsigned long ) ( statemate_bitlist[ index ] << index ); |
should read
checksum += ( unsigned long ) ( statemate_bitlist[ index ]) << index ;
as left shifting a signed value or a char by 63 bits are ub (in clang since at least release 15), see
Line
tacle-bench/bench/sequential/statemate/statemate.c
Line 1262 in d20dfa1
should read
as left shifting a signed value or a char by 63 bits are ub (in clang since at least release 15), see