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

Unified Diff: runtime/vm/flow_graph_compiler_arm.h

Issue 9722011: Make required changes to {ia32,arm} stubbed graph code generator. (Closed) Base URL: https://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_compiler_ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler_arm.h
diff --git a/runtime/vm/flow_graph_compiler_arm.h b/runtime/vm/flow_graph_compiler_arm.h
index 2739e1266b2700ba8b5ec772c05a61dff0f94e30..7d2b804a15978d25dccc176b24802c97cb68ca8f 100644
--- a/runtime/vm/flow_graph_compiler_arm.h
+++ b/runtime/vm/flow_graph_compiler_arm.h
@@ -24,8 +24,8 @@ class FlowGraphCompiler : public FlowGraphVisitor {
public:
FlowGraphCompiler(Assembler* assembler,
const ParsedFunction& parsed_function,
- const GrowableArray<BlockEntryInstr*>* blocks)
- : parsed_function_(parsed_function) {
+ const GrowableArray<BlockEntryInstr*>& blocks)
+ : FlowGraphVisitor(blocks), parsed_function_(parsed_function) {
}
virtual ~FlowGraphCompiler() { }
« no previous file with comments | « no previous file | runtime/vm/flow_graph_compiler_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698