Skip to content

Commit e559cb6

Browse files
Brainfart
1 parent 197e804 commit e559cb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/analyses/mCP.ml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ struct
8383
check_deps !activated;
8484
activated := topo_sort_an !activated;
8585
begin
86-
match get_string_list "ana.man_sens" with
87-
| [] -> (* use values of "ana.man_insens" (blacklist) *)
88-
let cont_inse = map' find_id @@ get_string_list "ana.man_insens" in
86+
match get_string_list "ana.ctx_sens" with
87+
| [] -> (* use values of "ana.ctx_insens" (blacklist) *)
88+
let cont_inse = map' find_id @@ get_string_list "ana.ctx_insens" in
8989
activated_context_sens := List.filter (fun (n, _) -> not (List.mem n cont_inse)) !activated;
90-
| sens -> (* use values of "ana.man_sens" (whitelist) *)
90+
| sens -> (* use values of "ana.ctx_sens" (whitelist) *)
9191
let cont_sens = map' find_id @@ sens in
9292
activated_context_sens := List.filter (fun (n, _) -> List.mem n cont_sens) !activated;
9393
end;

0 commit comments

Comments
 (0)