Chromium Code Reviews| Index: runtime/vm/flow_graph_compiler.h |
| diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h |
| index 4a8a5dd61c5b1d47e9c0d4b99129f3a376b54c5a..5735dcb804cfe7efd2bbaa6394b8a22f278652bf 100644 |
| --- a/runtime/vm/flow_graph_compiler.h |
| +++ b/runtime/vm/flow_graph_compiler.h |
| @@ -70,6 +70,9 @@ class CompilerDeoptInfo : public ZoneAllocated { |
| RawDeoptInfo* CreateDeoptInfo(FlowGraphCompiler* compiler); |
| + void AllocateIncommingParametersRecusive(Environment* env, |
| + intptr_t* stack_height); |
|
Kevin Millikin (Google)
2012/09/18 11:01:55
Spell check :)
zerny-google
2012/09/18 11:53:07
Thanks! Done.
|
| + |
| // No code needs to be generated. |
| virtual void GenerateCode(FlowGraphCompiler* compiler, intptr_t stub_ix) {} |
| @@ -85,7 +88,7 @@ class CompilerDeoptInfo : public ZoneAllocated { |
| private: |
| const intptr_t deopt_id_; |
| const DeoptReasonId reason_; |
| - const Environment* deoptimization_env_; |
| + Environment* deoptimization_env_; |
| DISALLOW_COPY_AND_ASSIGN(CompilerDeoptInfo); |
| }; |