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

Unified Diff: src/compiler/typer.cc

Issue 2258073002: [Turbofan]: Use new MachineTypes in access-builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 4 years, 4 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
Index: src/compiler/typer.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index 5d210b6bee3a3e6d89be73c93ad071489fa132f0..68cca37d848b901d33120dccab012590a06fde69 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -2000,6 +2000,14 @@ Type* Typer::Visitor::TypeImpossibleToTagged(Node* node) {
return Type::None();
}
+Type* Typer::Visitor::TypeImpossibleToTaggedSigned(Node* node) {
+ return Type::None();
+}
+
+Type* Typer::Visitor::TypeImpossibleToTaggedPointer(Node* node) {
+ return Type::None();
+}
+
Type* Typer::Visitor::TypeImpossibleToBit(Node* node) { return Type::None(); }
Type* Typer::Visitor::TypeTruncateFloat64ToFloat32(Node* node) {

Powered by Google App Engine
This is Rietveld 408576698