Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(137)

Unified Diff: src/compiler/typer.cc

Issue 2355253002: [turbofan] Eliminate usage of representation dimension of Type. (Closed)
Patch Set: Addressed commented out test. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/representation-change.cc ('k') | test/cctest/compiler/test-representation-change.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
}
« no previous file with comments | « src/compiler/representation-change.cc ('k') | test/cctest/compiler/test-representation-change.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698