Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index bab9f4f09bd24f463c5fa2a49b4087cd9059081c..10cfd05b9679b6664b5856b2bd867fc6863d5a77 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -2052,6 +2052,11 @@ Bounds Typer::Visitor::TypeUint64LessThan(Node* node) { |
} |
+Bounds Typer::Visitor::TypeUint64LessThanOrEqual(Node* node) { |
+ return Bounds(Type::Boolean()); |
+} |
+ |
+ |
Bounds Typer::Visitor::TypeUint64Mod(Node* node) { |
return Bounds(Type::Internal()); |
} |