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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 9553008: Implement DoWhile. (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') | runtime/vm/flow_graph_builder.cc » ('J')
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 5046)
+++ runtime/vm/flow_graph_builder.h (working copy)
@@ -209,11 +209,11 @@
return false_successor_address_ != NULL;
}
- TargetEntryInstr** true_successor_address() const {
+ BlockEntryInstr** true_successor_address() const {
Kevin Millikin (Google) 2012/03/07 09:15:44 The reason this was TargetEntry is to statically e
ASSERT(can_be_true());
return true_successor_address_;
}
- TargetEntryInstr** false_successor_address() const {
+ BlockEntryInstr** false_successor_address() const {
ASSERT(can_be_false());
return false_successor_address_;
}
@@ -231,8 +231,8 @@
}
// Output parameters.
- TargetEntryInstr** true_successor_address_;
- TargetEntryInstr** false_successor_address_;
+ BlockEntryInstr** true_successor_address_;
+ BlockEntryInstr** false_successor_address_;
};
} // namespace dart
« no previous file with comments | « no previous file | runtime/vm/flow_graph_builder.cc » ('j') | runtime/vm/flow_graph_builder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698