Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index a7d13337533b4d7bc5b4e8c417be650e628ae479..9116f3fc111a4a070091a5f49b36305579537915 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -2039,6 +2039,11 @@ Type* Typer::Visitor::TypeCheckIf(Node* node) { |
return nullptr; |
} |
+Type* Typer::Visitor::TypeCheckUnless(Node* node) { |
+ UNREACHABLE(); |
+ return nullptr; |
+} |
+ |
Type* Typer::Visitor::TypeTruncateTaggedToWord32(Node* node) { |
Type* arg = Operand(node, 0); |
// TODO(jarin): DCHECK(arg->Is(Type::NumberOrUndefined())); |