We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d9d27 commit b90ee73Copy full SHA for b90ee73
src/cdomain/value/cdomains/int/defExcDomain.ml
@@ -320,9 +320,7 @@ struct
320
321
let of_excl_list t l =
322
let r = size t in (* elements in l are excluded from the full range of t! *)
323
- `Excluded (List.fold_right S.add l (S.empty ()), r)
324
- (* TODO: Change after #1686 has landed *)
325
- (* `Excluded (S.of_list l, r) *)
+ `Excluded (S.of_list l, r)
326
327
let is_excl_list l = match l with `Excluded _ -> true | _ -> false
328
let to_excl_list (x:t) = match x with
0 commit comments