| Index: runtime/vm/flow_graph_compiler.h
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler.h (revision 24921)
|
| +++ runtime/vm/flow_graph_compiler.h (working copy)
|
| @@ -563,6 +563,10 @@
|
| void CompactBlock(BlockEntryInstr* block);
|
| void CompactBlocks();
|
|
|
| + bool IsListClass(const Class& cls) const {
|
| + return cls.raw() == list_class_.raw();
|
| + }
|
| +
|
| class Assembler* assembler_;
|
| const ParsedFunction& parsed_function_;
|
| const FlowGraph& flow_graph_;
|
| @@ -587,6 +591,7 @@
|
| const Class& double_class_;
|
| const Class& float32x4_class_;
|
| const Class& uint32x4_class_;
|
| + const Class& list_class_;
|
|
|
| ParallelMoveResolver parallel_move_resolver_;
|
|
|
|
|