File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ let empty =
85
85
; config_impact_analysis= no_payload
86
86
; cost= no_payload
87
87
; looper= no_payload
88
- (* ; deadlock= no_payload *)
89
88
; disjunctive_demo= no_payload
90
89
; lab_resource_leaks= no_payload
91
90
; litho_required_props= no_payload
@@ -164,8 +163,7 @@ module SQLite = struct
164
163
~racerd: data_of_sqlite_column ~lab_resource_leaks: data_of_sqlite_column
165
164
~scope_leakage: data_of_sqlite_column ~siof: data_of_sqlite_column
166
165
~lineage: data_of_sqlite_column ~lineage_shape: data_of_sqlite_column
167
- ~looper: data_of_sqlite_column
168
- ~starvation: data_of_sqlite_column
166
+ ~looper: data_of_sqlite_column ~starvation: data_of_sqlite_column
169
167
170
168
171
169
let eager_load stmt ~first_column = (make_eager first_column |> fst) stmt
Original file line number Diff line number Diff line change @@ -56,6 +56,6 @@ val store_spec :
56
56
-> proc_name :Sqlite3 .Data .t
57
57
-> merge_pulse_payload :(old_pulse_payload :Sqlite3 .Data .t option -> Sqlite3.Data .t list )
58
58
-> merge_report_summary :(old_report_summary :Sqlite3 .Data .t option -> Sqlite3.Data .t )
59
- -> merge_looper_summary :(old_report_summary :Sqlite3 .Data .t option -> Sqlite3.Data .t )
59
+ -> merge_looper_summary :(old_looper_summary :Sqlite3 .Data .t option -> Sqlite3.Data .t )
60
60
-> merge_summary_metadata :(old_summary_metadata :Sqlite3 .Data .t option -> Sqlite3.Data .t )
61
61
-> unit
Original file line number Diff line number Diff line change @@ -623,15 +623,15 @@ let inferbo_alloc_may_be_negative =
623
623
let infinite_cost_call ~kind = register_cost ~enabled: false " INFINITE_%s" ~kind
624
624
625
625
let looper_infinite_cost =
626
- register ~id: " LOOPER_INFINITE_EXECUTION_TIME" Error Looper
626
+ register ~category: No_category ~ id:" LOOPER_INFINITE_EXECUTION_TIME" Error Looper
627
627
~user_documentation:
628
628
" This warning indicates that Looper was not able to determine a static\n \
629
629
\ upper bound on the execution cost of the procedure. By default, this\n \
630
630
\ issue type is disabled."
631
631
632
632
633
633
let looper_condition_always_false =
634
- register ~id: " LOOPER_CONDITION_ALWAYS_FALSE" Warning Looper
634
+ register ~category: No_category ~ id:" LOOPER_CONDITION_ALWAYS_FALSE" Warning Looper
635
635
~user_documentation:
636
636
" This warning indicates that Looper determined a condition to be always false."
637
637
You can’t perform that action at this time.
0 commit comments