Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 9ae1005f532634c63ac26b613968821d284124af..e33a56d3671f0a760f45c0702d68758ab63d1d85 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -713,6 +713,18 @@ Type* Typer::Visitor::TypeEffectPhi(Node* node) { |
return nullptr; |
} |
+Type* Typer::Visitor::TypeLoopExit(Node* node) { |
+ UNREACHABLE(); |
+ return nullptr; |
+} |
+ |
+Type* Typer::Visitor::TypeLoopExitValue(Node* node) { return Operand(node, 0); } |
+ |
+Type* Typer::Visitor::TypeLoopExitEffect(Node* node) { |
+ UNREACHABLE(); |
+ return nullptr; |
+} |
+ |
Type* Typer::Visitor::TypeCheckpoint(Node* node) { |
UNREACHABLE(); |
return nullptr; |