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

Unified Diff: runtime/vm/flow_graph_type_propagator.cc

Issue 102053010: - Use canonicalized type of non-parameterized classes when (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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
Index: runtime/vm/flow_graph_type_propagator.cc
===================================================================
--- runtime/vm/flow_graph_type_propagator.cc (revision 31170)
+++ runtime/vm/flow_graph_type_propagator.cc (working copy)
@@ -808,17 +808,17 @@
CompileType CurrentContextInstr::ComputeType() const {
- return CompileType::FromCid(kContextCid);
+ return CompileType::Dynamic();
Florian Schneider 2013/12/17 10:39:23 Correct, but I think the cid can be more precise.
Ivan Posva 2013/12/17 16:58:04 Done.
}
CompileType CloneContextInstr::ComputeType() const {
- return CompileType::FromCid(kContextCid);
+ return CompileType::Dynamic();
Florian Schneider 2013/12/17 10:39:23 Same here.
Ivan Posva 2013/12/17 16:58:04 Done.
}
CompileType AllocateContextInstr::ComputeType() const {
- return CompileType::FromCid(kContextCid);
+ return CompileType::Dynamic();
Florian Schneider 2013/12/17 10:39:23 And here.
Ivan Posva 2013/12/17 16:58:04 Done.
}
« no previous file with comments | « runtime/lib/object.cc ('k') | runtime/vm/object.h » ('j') | runtime/vm/object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698