Skip to content

Commit

Permalink
Remove false test.
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandahl committed Sep 11, 2024
1 parent 06dc320 commit b2e2f11
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/test_fp16.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit b2e2f11

Please sign in to comment.