Skip to content

Commit ab670af

Browse files
Remove setting of dead code options for HTML / SARIF
1 parent 9f76a64 commit ab670af

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/maingoblint.ml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,13 @@ let rec option_spec_list: Arg_complete.speclist Lazy.t = lazy (
5151
set_string "outfile" "result";
5252
if get_string "exp.g2html_path" = "" then
5353
set_string "exp.g2html_path" (Fpath.to_string exe_dir);
54-
set_bool "ana.dead-code.lines" true;
55-
set_bool "ana.dead-code.branches" true;
56-
set_bool "ana.dead-code.functions" true;
5754
set_bool "exp.cfgdot" true;
5855
set_bool "g2html" true;
5956
set_string "result" "fast_xml"
6057
in
6158
let configure_sarif () =
6259
if (get_string "outfile" = "") then
6360
set_string "outfile" "goblint.sarif";
64-
set_bool "ana.dead-code.lines" true;
65-
set_bool "ana.dead-code.branches" true;
66-
set_bool "ana.dead-code.functions" true;
6761
set_string "result" "sarif"
6862
in
6963
let complete_option_value option s =

0 commit comments

Comments
 (0)