From e2ceaa58c10e9ee3e9eece42466243f5a8aff125 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Tue, 27 Aug 2024 13:07:49 -0700 Subject: Rename relaxed SIMD fma instructions to match spec. (#6876) The instructions relaxed_fma and relaxed_fnma have been renamed to relaxed_madd and relaxed_nmadd. https://github.com/WebAssembly/relaxed-simd/blob/main/proposals/relaxed-simd/Overview.md#binary-format --- src/js/binaryen.js-post.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/js/binaryen.js-post.js') diff --git a/src/js/binaryen.js-post.js b/src/js/binaryen.js-post.js index 55e1a7ad7..40d08dceb 100644 --- a/src/js/binaryen.js-post.js +++ b/src/js/binaryen.js-post.js @@ -383,10 +383,10 @@ function initializeConstants() { 'XorVec128', 'AndNotVec128', 'BitselectVec128', - 'RelaxedFmaVecF32x4', - 'RelaxedFmsVecF32x4', - 'RelaxedFmaVecF64x2', - 'RelaxedFmsVecF64x2', + 'RelaxedMaddVecF32x4', + 'RelaxedNmaddVecF32x4', + 'RelaxedMaddVecF64x2', + 'RelaxedNmaddVecF64x2', 'LaneselectI8x16', 'LaneselectI16x8', 'LaneselectI32x4', -- cgit v1.2.3