Skip to content

Commit

Permalink
Fix reachable_vars timing
Browse files Browse the repository at this point in the history
  • Loading branch information
karoliineh committed Jan 5, 2024
1 parent 7af5e41 commit c9ccbb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analyses/base.ml
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ struct
if M.tracing then M.traceu "reachability" "All reachable vars: %a\n" AD.pretty !visited;
List.map AD.singleton (AD.elements !visited)

let reachable_vars ~ctx args = Timing.wrap "reachability" (reachable_vars ~ctx) args
let reachable_vars ~ctx st args = Timing.wrap "reachability" (reachable_vars ~ctx st) args

let drop_non_ptrs (st:CPA.t) : CPA.t =
if CPA.is_top st then st else
Expand Down

0 comments on commit c9ccbb6

Please sign in to comment.