Skip to content

Commit dd759f9

Browse files
committed
rebase onto master
1 parent 612a47e commit dd759f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/analyses/unassumeAnalysis.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ struct
267267
let enter ctx lv f args =
268268
[(ctx.local, D.empty ())]
269269

270-
let combine ctx lv fe f args fc fd =
270+
let combine ctx lv fe f args fc fd f_ask =
271271
emit_unassume ctx
272272

273273
(* not in sync, query, entry, threadenter because they aren't final transfer function on edge *)

src/util/wideningTokens.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ struct
168168
let asm ctx = lift_fun ctx lift' S.asm identity
169169
let skip ctx = lift_fun ctx lift' S.skip identity
170170
let special ctx r f args = lift_fun ctx lift' S.special ((|>) args % (|>) f % (|>) r)
171-
let combine ctx r fe f args fc es = lift_fun ctx lift' S.combine (fun p -> p r fe f args fc (D.unlift es)) (* TODO: use tokens from es *)
171+
let combine ctx r fe f args fc es f_ask = lift_fun ctx lift' S.combine (fun p -> p r fe f args fc (D.unlift es) f_ask) (* TODO: use tokens from es *)
172172

173173
let threadenter ctx lval f args = lift_fun ctx (fun l ts -> List.map (Fun.flip lift' ts) l) S.threadenter ((|>) args % (|>) f % (|>) lval)
174174
let threadspawn ctx lval f args fctx = lift_fun ctx lift' S.threadspawn ((|>) (conv fctx) % (|>) args % (|>) f % (|>) lval)

0 commit comments

Comments
 (0)