diff --git a/infer/man/man1/infer-full.txt b/infer/man/man1/infer-full.txt index 41246abbc..c0f4ed090 100644 --- a/infer/man/man1/infer-full.txt +++ b/infer/man/man1/infer-full.txt @@ -1583,11 +1583,6 @@ INTERNAL OPTIONS --procedures-filter-reset Cancel the effect of --procedures-filter. - --procedures-per-process int - Specify the number of procedures to analyze per process when using - --per-procedure-parallelism. If 0 is specified, each file is - divided into --jobs groups of procedures. - --process-clang-ast Activates: process the ast to emit some info about the file (Not available for Java) (Conversely: --no-process-clang-ast) diff --git a/infer/src/base/Config.ml b/infer/src/base/Config.ml index f6898032f..217b9635c 100644 --- a/infer/src/base/Config.ml +++ b/infer/src/base/Config.ml @@ -1699,13 +1699,6 @@ and procedures_name = "Include procedures names in the output of $(b,--procedures)" -and procedures_per_process = - CLOpt.mk_int ~long:"procedures-per-process" ~default:1000 ~meta:"int" - "Specify the number of procedures to analyze per process when using \ - $(b,--per-procedure-parallelism). If 0 is specified, each file is divided into $(b,--jobs) \ - groups of procedures." - - and procedures_source_file = CLOpt.mk_bool ~long:"procedures-source-file" ~default:true ~in_help:InferCommand.[(Explore, manual_explore_procedures)] @@ -2839,8 +2832,6 @@ and procedures_filter = !procedures_filter and procedures_name = !procedures_name -and[@warning "-32"] procedures_per_process = !procedures_per_process - and procedures_source_file = !procedures_source_file and procedures_summary = !procedures_summary