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

Unified Diff: runtime/vm/flow_graph_compiler_x64.cc

Issue 10399026: Add a global graph entry. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
Index: runtime/vm/flow_graph_compiler_x64.cc
diff --git a/runtime/vm/flow_graph_compiler_x64.cc b/runtime/vm/flow_graph_compiler_x64.cc
index f63b4186093eb97a2c719fd242a697554b3a9c57..cf739ac60f29dbd1bb4a30f164f14ac591987cc6 100644
--- a/runtime/vm/flow_graph_compiler_x64.cc
+++ b/runtime/vm/flow_graph_compiler_x64.cc
@@ -1176,6 +1176,11 @@ void FlowGraphCompiler::VisitBlocks() {
}
+void FlowGraphCompiler::VisitGraphEntry(GraphEntryInstr* instr) {
+ // Nothing to do.
+}
+
+
void FlowGraphCompiler::VisitJoinEntry(JoinEntryInstr* instr) {
__ Bind(&block_info_[instr->postorder_number()]->label);
}

Powered by Google App Engine
This is Rietveld 408576698