Chromium Code Reviews

Unified Diff: src/compiler/typer.cc

Issue 1756863002: [wasm] Int64Lowering of I64Shl on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: I forgot to remove some debug code. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index 6778c8d3b3a8e4e8207f9cf65013663447f9f9bd..85e0f06d83ca9e868d1bb8a1be4c7c0abc44f1a5 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -2441,6 +2441,7 @@ Type* Typer::Visitor::TypeCheckedStore(Node* node) {
return nullptr;
}
+Type* Typer::Visitor::TypeWasmWord64Shl(Node* node) { return Type::Internal(); }
// Heap constants.

Powered by Google App Engine