summaryrefslogtreecommitdiff
path: root/tests/fstar/array
diff options
context:
space:
mode:
authorSon Ho2023-12-13 16:54:46 +0100
committerSon Ho2023-12-13 16:54:46 +0100
commit4c1f1d64d5dce2388f7124422e3669cf839fc105 (patch)
treed76076d1f27b5c6ad380080f7dcd6968cde425c4 /tests/fstar/array
parentc48859717d847f4492a0c3cc76e8f8b0b38fcc10 (diff)
Regenerate the test files
Diffstat (limited to 'tests/fstar/array')
-rw-r--r--tests/fstar/array/Primitives.fst4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/fstar/array/Primitives.fst b/tests/fstar/array/Primitives.fst
index dd340c00..a3ffbde4 100644
--- a/tests/fstar/array/Primitives.fst
+++ b/tests/fstar/array/Primitives.fst
@@ -273,6 +273,10 @@ let scalar_shr (#ty0 #ty1 : scalar_ty)
let scalar_cast (src_ty : scalar_ty) (tgt_ty : scalar_ty) (x : scalar src_ty) : result (scalar tgt_ty) =
mk_scalar tgt_ty x
+// This can't fail, but for now we make all casts faillible (easier for the translation)
+let scalar_cast_bool (tgt_ty : scalar_ty) (x : bool) : result (scalar tgt_ty) =
+ mk_scalar tgt_ty (if x then 1 else 0)
+
/// The scalar types
type isize : eqtype = scalar Isize
type i8 : eqtype = scalar I8