Chromium Code Reviews

Unified Diff: src/compiler/typer.cc

Issue 1485183002: [turbofan] Deopt support for escape analysis (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@ea-local
Patch Set: Created 5 years 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 656223c4a41d20885d1f28072ecd8f23fb8a613b..8ae732a9a0b26a8c3def0549a28cf2cb6c00bce8 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -637,6 +637,11 @@ Type* Typer::Visitor::TypeStateValues(Node* node) {
}
+Type* Typer::Visitor::TypeObjectState(Node* node) {
+ return Type::Internal(zone());
+}
+
+
Type* Typer::Visitor::TypeTypedStateValues(Node* node) {
return Type::Internal(zone());
}

Powered by Google App Engine