Skip to content

Commit f7ba93e

Browse files
committed
Update isla-sail
1 parent 537a478 commit f7ba93e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

isla-sail/jib_ir.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ let rec string_of_clexp = function
9797
| CL_field (clexp, field) -> string_of_clexp clexp ^ "." ^ zencode_id field
9898
| CL_addr clexp -> string_of_clexp clexp ^ "*"
9999
| CL_tuple (clexp, n) -> string_of_clexp clexp ^ "." ^ string_of_int n
100-
| CL_void -> "void"
100+
| CL_void _ -> "void"
101101
| CL_rmw _ -> assert false
102102

103103
let string_of_creturn = function

isla-sail/sail_plugin_isla.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,14 +220,15 @@ module Ir_config : Jib_compile.CONFIG = struct
220220
let optimize_anf _ aexp = aexp
221221

222222
let unroll_loops = None
223-
let make_call_precise _ _ = true
223+
let make_call_precise _ _ _ _ = true
224224
let ignore_64 = false
225225
let struct_value = true
226226
let tuple_value = true
227227
let track_throw = true
228228
let branch_coverage = None
229229
let use_real = false
230230
let use_void = false
231+
let eager_control_flow = false
231232
end
232233

233234
let jib_of_ast env ast effect_info =

0 commit comments

Comments
 (0)