Skip to content

Commit

Permalink
Fix parsing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
myreen committed Jun 11, 2022
1 parent cb0ae91 commit 329e957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pancake/semantics/crepSemScript.sml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Definition eval_def:
| _ => NONE) /\
(eval s (Cmp cmp e1 e2) =
case (eval s e1, eval s e2) of
| (SOME (Word w1), SOME (Word w2)) => SOME (Word (v2w [word_cmp cmp w1 w2]))
| (SOME (Word w1), SOME (Word w2)) => SOME (Word (bitstring$v2w [word_cmp cmp w1 w2]))
| _ => NONE) /\
(eval s (Shift sh e n) =
case eval s e of
Expand Down

0 comments on commit 329e957

Please sign in to comment.