Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 70f80cbb6b81868b9dec5b90e7e2442084753e20..c5d3f41a49783ca167270185f85cb20634fec752 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -1554,6 +1554,12 @@ Bounds Typer::Visitor::TypeFloat64LessThanOrEqual(Node* node) { |
} |
+Bounds Typer::Visitor::TypeFloat64Round(Node* node) { |
+ // TODO(sigurds): We could have a tighter bound here. |
+ return Bounds(Type::Number()); |
+} |
+ |
+ |
Bounds Typer::Visitor::TypeLoadStackPointer(Node* node) { |
return Bounds(Type::Internal()); |
} |