Skip to content

Commit

Permalink
Update isla-sail
Browse files Browse the repository at this point in the history
  • Loading branch information
Alasdair committed Sep 13, 2024
1 parent 537a478 commit f7ba93e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion isla-sail/jib_ir.ml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ let rec string_of_clexp = function
| CL_field (clexp, field) -> string_of_clexp clexp ^ "." ^ zencode_id field
| CL_addr clexp -> string_of_clexp clexp ^ "*"
| CL_tuple (clexp, n) -> string_of_clexp clexp ^ "." ^ string_of_int n
| CL_void -> "void"
| CL_void _ -> "void"
| CL_rmw _ -> assert false

let string_of_creturn = function
Expand Down
3 changes: 2 additions & 1 deletion isla-sail/sail_plugin_isla.ml
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,15 @@ module Ir_config : Jib_compile.CONFIG = struct
let optimize_anf _ aexp = aexp

let unroll_loops = None
let make_call_precise _ _ = true
let make_call_precise _ _ _ _ = true
let ignore_64 = false
let struct_value = true
let tuple_value = true
let track_throw = true
let branch_coverage = None
let use_real = false
let use_void = false
let eager_control_flow = false
end

let jib_of_ast env ast effect_info =
Expand Down

0 comments on commit f7ba93e

Please sign in to comment.