File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/cdomain/value/cdomains/int Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ module BitfieldFunctor (Ints_t : IntOps.IntOps): Bitfield_SOverflow with type in
211211
212212 (* converts the (zs,os) mask representation to a human readable string of the form 0b(0|1|?|⊥)...(0|1|?|⊥)+. *)
213213 (* Example: 0b0...01? should mean that the last bit is unknown, while all other bits are exactly known *)
214- (* The ... (dots) are used to indicate an infinte repetition of the last bit *)
214+ (* The ... (dots) are used to indicate an infinte repetition of the previous bit *)
215215 let rec create_pretty_bf_string o_mask z_mask known_bitmask invalid_bitmask acc =
216216 let current_bit_known = (known_bitmask &: Ints_t. one) = Ints_t. one in
217217 let current_bit_invalid = (invalid_bitmask &: Ints_t. one) = Ints_t. one in
You can’t perform that action at this time.
0 commit comments