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

Commit 92a8e44

Browse files
authored
Fix ordering for v128 operations (#54)
1 parent 449507a commit 92a8e44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

proposals/simd/BinarySIMD.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ The `v8x16.shuffle` instruction has 16 bytes after `simdop`.
9393
| `f64x2.gt` | `0x49`| - |
9494
| `f64x2.le` | `0x4a`| - |
9595
| `f64x2.ge` | `0x4b`| - |
96-
| `v128.and` | `0x4c`| - |
97-
| `v128.or` | `0x4d`| - |
98-
| `v128.xor` | `0x4e`| - |
99-
| `v128.not` | `0x4f`| - |
96+
| `v128.not` | `0x4c`| - |
97+
| `v128.and` | `0x4d`| - |
98+
| `v128.or` | `0x4e`| - |
99+
| `v128.xor` | `0x4f`| - |
100100
| `v128.bitselect` | `0x50`| - |
101101
| `i8x16.neg` | `0x51`| - |
102102
| `i8x16.any_true` | `0x52`| - |

0 commit comments

Comments
 (0)