Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index ecafda93acff8e6625c438af661e4023821246c6..7db9a05079453b6b227dc70236876abc5878b715 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -558,7 +558,7 @@ Type* Typer::Visitor::TypeRetain(Node* node) { |
Type* Typer::Visitor::TypeInt32Constant(Node* node) { |
double number = OpParameter<int32_t>(node); |
return Type::Intersect(Type::Range(number, number, zone()), |
- Type::UntaggedIntegral32(), zone()); |
+ Type::Integral32(), zone()); |
} |