Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit 31efb15

Browse files
committed
[interpreter] Add a missing closing parens
Missed it in #466.
1 parent 4c442ce commit 31efb15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/exec/simd.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ struct
450450
let trunc_sat_f32x4_u = convert I32_convert.trunc_sat_f32_u
451451

452452
let convert_zero f v =
453-
Rep.(of_i32x4 I32.(zero :: zero :: (List.map f (to_f64x2 v)))
453+
Rep.(of_i32x4 I32.(zero :: zero :: (List.map f (to_f64x2 v))))
454454
let trunc_sat_f64x2_s_zero = convert_zero I32_convert.trunc_sat_f64_s
455455
let trunc_sat_f64x2_u_zero = convert_zero I32_convert.trunc_sat_f64_u
456456

0 commit comments

Comments
 (0)