@@ -900,18 +900,6 @@ Lane-wise IEEE `multiplication`.
900900
901901Lane-wise IEEE ` squareRoot ` .
902902
903- ### Round to nearest integer, ties to even
904- * ` f32x4.nearest(a: v128) -> v128 `
905- * ` f64x2.nearest(a: v128) -> v128 `
906-
907- Lane-wise rounding to the nearest integral value; if two values are equally near, rounds to the even one.
908-
909- ### Round to integer toward zero (truncate to integer)
910- * ` f32x4.trunc(a: v128) -> v128 `
911- * ` f64x2.trunc(a: v128) -> v128 `
912-
913- Lane-wise rounding to the nearest integral value with the magniture not larger than the input.
914-
915903### Round to integer above (ceiling)
916904* ` f32x4.ceil(a: v128) -> v128 `
917905* ` f64x2.ceil(a: v128) -> v128 `
@@ -924,6 +912,18 @@ Lane-wise rounding to the nearest integral value not smaller than the input.
924912
925913Lane-wise rounding to the nearest integral value not greater than the input.
926914
915+ ### Round to integer toward zero (truncate to integer)
916+ * ` f32x4.trunc(a: v128) -> v128 `
917+ * ` f64x2.trunc(a: v128) -> v128 `
918+
919+ Lane-wise rounding to the nearest integral value with the magnitude not larger than the input.
920+
921+ ### Round to nearest integer, ties to even
922+ * ` f32x4.nearest(a: v128) -> v128 `
923+ * ` f64x2.nearest(a: v128) -> v128 `
924+
925+ Lane-wise rounding to the nearest integral value; if two values are equally near, rounds to the even one.
926+
927927## Conversions
928928### Integer to floating point
929929* ` f32x4.convert_i32x4_s(a: v128) -> v128 `
0 commit comments