Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 4dbf4a488851738d1b50fbac823a4a1b4b7a2f9b..f064229e88266ce97237fca74e0894aee266cbb5 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -2120,6 +2120,11 @@ Type* Typer::Visitor::TypeRoundInt64ToFloat64(Node* node) { |
} |
+Type* Typer::Visitor::TypeRoundUint64ToFloat32(Node* node) { |
+ return Type::Intersect(Type::PlainNumber(), Type::UntaggedFloat32(), zone()); |
+} |
+ |
+ |
Type* Typer::Visitor::TypeRoundUint64ToFloat64(Node* node) { |
return Type::Intersect(Type::PlainNumber(), Type::UntaggedFloat64(), zone()); |
} |