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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 9722009: Remove possibility of critical edges. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | « no previous file | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_builder.h
===================================================================
--- runtime/vm/flow_graph_builder.h (revision 5591)
+++ runtime/vm/flow_graph_builder.h (working copy)
@@ -240,11 +240,11 @@
virtual void VisitLiteralNode(LiteralNode* node);
virtual void VisitLoadLocalNode(LoadLocalNode* node);
- BlockEntryInstr** true_successor_address() const {
+ TargetEntryInstr** true_successor_address() const {
ASSERT(true_successor_address_ != NULL);
return true_successor_address_;
}
- BlockEntryInstr** false_successor_address() const {
+ TargetEntryInstr** false_successor_address() const {
ASSERT(false_successor_address_ != NULL);
return false_successor_address_;
}
@@ -262,8 +262,8 @@
}
// Output parameters.
- BlockEntryInstr** true_successor_address_;
- BlockEntryInstr** false_successor_address_;
+ TargetEntryInstr** true_successor_address_;
+ TargetEntryInstr** false_successor_address_;
};
} // namespace dart
« no previous file with comments | « no previous file | runtime/vm/flow_graph_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698