Skip to content

Commit

Permalink
Tolerating double machine word size
Browse files Browse the repository at this point in the history
  • Loading branch information
ckirsch committed Feb 19, 2024
1 parent d4b03aa commit 1a910c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/rotor.c
Original file line number Diff line number Diff line change
Expand Up @@ -2915,8 +2915,8 @@ uint64_t eval_bitvec_size(uint64_t* line) {
if (size <= SIZEOFUINT64INBITS)
return size;

if (size == 2 * DOUBLEWORDSIZEINBITS)
// TODO: tolerating but not yet supporting 128-bit bitvectors
if (size == 2 * WORDSIZEINBITS)
// TODO: tolerating but not yet supporting double machine word bitvectors
return size;

printf("%s: evaluate unsupported %lu-bit bitvector error\n", selfie_name, size);
Expand Down

0 comments on commit 1a910c8

Please sign in to comment.