Chromium Code Reviews| 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 13a44e662f352e9a3a92a694d7f90175db760251..0aef5485745b75a40cd03bf530f17b88c2b10c44 100644 |
| --- a/runtime/vm/flow_graph_compiler_x64.cc |
| +++ b/runtime/vm/flow_graph_compiler_x64.cc |
| @@ -802,7 +802,8 @@ void FlowGraphCompiler::CopyParameters() { |
| } |
| if (is_optimizing()) { |
| stackmap_table_builder_->AddEntry(assembler()->CodeSize(), |
| - empty_stack_bitmap); |
| + empty_stack_bitmap, |
| + 0); |
|
Vyacheslav Egorov (Google)
2012/08/27 14:54:51
I wonder if it would not be cleaner to pass Regist
Kevin Millikin (Google)
2012/08/29 12:40:41
At some point we have to unpack it into something
|
| } |
| if (FLAG_trace_functions) { |
| @@ -817,7 +818,8 @@ void FlowGraphCompiler::CopyParameters() { |
| CatchClauseNode::kInvalidTryIndex); |
| if (is_optimizing()) { |
| stackmap_table_builder_->AddEntry(assembler()->CodeSize(), |
| - empty_stack_bitmap); |
| + empty_stack_bitmap, |
| + 0); |
| } |
| __ popq(RAX); // Remove argument. |
| __ popq(RAX); // Restore result. |