Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 8402d6b6477171ce1e86232ab03c9fb9a72fc067..656223c4a41d20885d1f28072ecd8f23fb8a613b 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -1394,6 +1394,11 @@ |
Type* Typer::Visitor::TypeJSStoreContext(Node* node) { |
UNREACHABLE(); |
return nullptr; |
+} |
+ |
+ |
+Type* Typer::Visitor::TypeJSLoadNativeContext(Node* node) { |
+ return Type::Intersect(Type::Internal(), Type::TaggedPointer(), zone()); |
} |