Skip to content

Commit

Permalink
Add a builtin to mark pick dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Alasdair committed Apr 15, 2024
1 parent 47a7b18 commit cb0a396
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/concurrency_interface/common.sail
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,10 @@ val sail_ignore_write_to : forall ('a: Type). register('a) -> unit

function sail_ignore_write_to(reg) = sail_mark_register(reg, "ignore_write")

val sail_pick_dependency : forall ('a: Type). register('a) -> unit

function sail_pick_dependency(reg) = sail_mark_register(reg, "pick")

$ifdef SYMBOLIC
val __monomorphize = pure "monomorphize" : forall 'n, 'n >= 0. bits('n) -> bits('n)
$else
Expand Down

0 comments on commit cb0a396

Please sign in to comment.