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
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,7 @@ let check_arguments () =
143
143
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.";
144
144
if get_bool "ana.autotune.enabled"&& get_bool "incremental.load"then (set_bool "ana.autotune.enabled"false; warn "ana.autotune.enabled implicitly disabled by incremental.load");
145
145
if get_bool "exp.basic-blocks"&¬ (get_bool "justcil") &&List.mem "assert"@@ get_string_list "trans.activated"then (set_bool "exp.basic-blocks"false; warn "The option exp.basic-blocks implicitely disabled by activating the \"assert\" tranformation.");
146
+
if (not@@ get_bool "witness.invariant.all-locals") && (not@@ get_bool "cil.addNestedScopeAttr") then (set_bool "cil.addNestedScopeAttr"true; warn "Disabling witness.invariant.all-locals implicitly enables cil.addNestedScopeAttr.");
0 commit comments