From b2e2f11be06f1ae4229c48a4c2817528bbcf7d96 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Wed, 11 Sep 2024 22:52:44 +0000 Subject: [PATCH] Remove false test. --- test/test_fp16.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/test_fp16.c b/test/test_fp16.c index 064c6b242d9c..9a77fcc28863 100644 --- a/test/test_fp16.c +++ b/test/test_fp16.c @@ -114,11 +114,6 @@ int main() { a = wasm_f16x8_ge(wasm_f16x8_splat(2.0f), wasm_f16x8_splat(3.0f)); assert_all_lanes_eq_uint16(a, 0); - // TODO Addition fails with duplicate splats, because of failure to promote - // tee in LLVM. - a = wasm_f16x8_add(wasm_f16x8_splat(2.0f), wasm_f16x8_splat(2.0f)); - assert_all_lanes_eq(a, 4.0f); - a = wasm_f16x8_add(wasm_f16x8_splat(2.0f), wasm_f16x8_splat(3.0f)); assert_all_lanes_eq(a, 5.0f);