Index: test/cctest/wasm/test-run-wasm.cc |
diff --git a/test/cctest/wasm/test-run-wasm.cc b/test/cctest/wasm/test-run-wasm.cc |
index 90aa47b5e50e86c2e8855e3c1b0fb4900f74abf3..15f5bd6409bd7c91220a5752d0875ac3eefaaab9 100644 |
--- a/test/cctest/wasm/test-run-wasm.cc |
+++ b/test/cctest/wasm/test-run-wasm.cc |
@@ -495,26 +495,6 @@ TEST(Run_WasmInt64Ctz) { |
CHECK_EQ(values[i].expected, r.Call(values[i].input)); |
} |
} |
- |
- |
-TEST(Run_WasmInt64Popcnt) { |
- struct { |
- int64_t expected; |
- uint64_t input; |
- } values[] = {{64, 0xffffffffffffffff}, |
- {0, 0x0000000000000000}, |
- {2, 0x0000080000008000}, |
- {26, 0x1123456782345678}, |
- {38, 0xffedcba09edcba09}}; |
- |
- WasmRunner<int64_t> r(MachineType::Uint64()); |
- BUILD(r, WASM_I64_POPCNT(WASM_GET_LOCAL(0))); |
- for (size_t i = 0; i < arraysize(values); i++) { |
- CHECK_EQ(values[i].expected, r.Call(values[i].input)); |
- } |
-} |
- |
- |
#endif |
TEST(Run_WASM_Int32DivS_trap) { |