diff options
Diffstat (limited to 'test/example')
-rw-r--r-- | test/example/c-api-kitchen-sink.c | 8 | ||||
-rw-r--r-- | test/example/c-api-kitchen-sink.txt | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c index 802789173..d3f20e888 100644 --- a/test/example/c-api-kitchen-sink.c +++ b/test/example/c-api-kitchen-sink.c @@ -956,10 +956,10 @@ void test_core() { // Other SIMD makeSIMDShuffle(module), makeSIMDTernary(module, BinaryenBitselectVec128()), - makeSIMDTernary(module, BinaryenRelaxedFmaVecF32x4()), - makeSIMDTernary(module, BinaryenRelaxedFmsVecF32x4()), - makeSIMDTernary(module, BinaryenRelaxedFmaVecF64x2()), - makeSIMDTernary(module, BinaryenRelaxedFmsVecF64x2()), + makeSIMDTernary(module, BinaryenRelaxedMaddVecF32x4()), + makeSIMDTernary(module, BinaryenRelaxedNmaddVecF32x4()), + makeSIMDTernary(module, BinaryenRelaxedMaddVecF64x2()), + makeSIMDTernary(module, BinaryenRelaxedNmaddVecF64x2()), makeSIMDTernary(module, BinaryenLaneselectI8x16()), makeSIMDTernary(module, BinaryenLaneselectI16x8()), makeSIMDTernary(module, BinaryenLaneselectI32x4()), diff --git a/test/example/c-api-kitchen-sink.txt b/test/example/c-api-kitchen-sink.txt index 17344ccab..f1271f547 100644 --- a/test/example/c-api-kitchen-sink.txt +++ b/test/example/c-api-kitchen-sink.txt @@ -1884,28 +1884,28 @@ BinaryenFeatureAll: 524287 ) ) (drop - (f32x4.relaxed_fma + (f32x4.relaxed_madd (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) ) ) (drop - (f32x4.relaxed_fms + (f32x4.relaxed_nmadd (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) ) ) (drop - (f64x2.relaxed_fma + (f64x2.relaxed_madd (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) ) ) (drop - (f64x2.relaxed_fms + (f64x2.relaxed_nmadd (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) (v128.const i32x4 0x04030201 0x08070605 0x0c0b0a09 0x100f0e0d) |