Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(560)

Unified Diff: test/cctest/wasm/test-run-wasm-64.cc

Issue 1804953002: [wasm] Int64Lowering of I64ReinterpretF64. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed unused variables. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | test/unittests/compiler/int64-lowering-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/wasm/test-run-wasm-64.cc
diff --git a/test/cctest/wasm/test-run-wasm-64.cc b/test/cctest/wasm/test-run-wasm-64.cc
index da624686e976ce5b4615d1ba5606a086545cc52f..e06fcbcb933982f306196b50627efc3295e47a7a 100644
--- a/test/cctest/wasm/test-run-wasm-64.cc
+++ b/test/cctest/wasm/test-run-wasm-64.cc
@@ -83,7 +83,7 @@
V(F64SConvertI64, true) \
V(F64UConvertI64, true) \
V(F64ReinterpretI64, false) \
- V(I64ReinterpretF64, false) \
+ V(I64ReinterpretF64, true) \
V(I64Ror, false) \
V(I64Rol, false)
@@ -1184,8 +1184,8 @@ TEST(Run_Wasm_I64UConvertF64b) {
}
}
-TEST(Run_Wasm_F64ReinterpretI64) {
- REQUIRE(F64ReinterpretI64);
+TEST(Run_Wasm_I64ReinterpretF64) {
+ REQUIRE(I64ReinterpretF64);
TestingModule module;
int64_t* memory = module.AddMemoryElems<int64_t>(8);
WasmRunner<int64_t> r(&module);
@@ -1200,8 +1200,8 @@ TEST(Run_Wasm_F64ReinterpretI64) {
}
}
-TEST(Run_Wasm_I64ReinterpretF64) {
- REQUIRE(I64ReinterpretF64);
+TEST(Run_Wasm_F64ReinterpretI64) {
+ REQUIRE(F64ReinterpretI64);
TestingModule module;
int64_t* memory = module.AddMemoryElems<int64_t>(8);
WasmRunner<int64_t> r(&module, MachineType::Int64());
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | test/unittests/compiler/int64-lowering-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698