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 |