You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/maingoblint.ml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -134,7 +134,7 @@ let check_arguments () =
134
134
if get_bool "ana.base.context.int"&¬ (get_bool "ana.base.context.non-ptr") then (set_bool "ana.base.context.int"false; warn "ana.base.context.int implicitly disabled by ana.base.context.non-ptr");
135
135
(* order matters: non-ptr=false, int=true -> int=false cascades to interval=false with warning *)
136
136
if get_bool "ana.base.context.interval"&¬ (get_bool "ana.base.context.int") then (set_bool "ana.base.context.interval"false; warn "ana.base.context.interval implicitly disabled by ana.base.context.int");
137
-
if get_bool "ana.base.priv.protection.changes-only"&¬@@List.mem (get_string "ana.base.privatization") ["protection"; "protection-tid"; "protection-atomic"; "protection-read"; "protection-read-tid"; "protection-read-atomic"] then
137
+
if get_bool "ana.base.priv.protection.changes-only"&¬@@List.mem (get_string "ana.base.privatization") ["protection"; "protection-tid"; "protection-atomic"; "protection-read"; "protection-read-tid"; "protection-read-atomic"; "protection-atomic-ghost"] then
138
138
warn "ana.base.priv.protection.changes-only requires ana.base.privatization to be protection based";
139
139
if get_bool "incremental.only-rename"then (set_bool "incremental.load"true; warn "incremental.only-rename implicitly activates incremental.load. Previous AST is loaded for diff and rename, but analysis results are not reused.");
140
140
if get_bool "incremental.restart.sided.enabled"&& get_string_list "incremental.restart.list"<>[]then warn "Passing a non-empty list to incremental.restart.list (manual restarting) while incremental.restart.sided.enabled (automatic restarting) is activated.";
0 commit comments