| Index: runtime/vm/code_descriptors.cc
|
| diff --git a/runtime/vm/code_descriptors.cc b/runtime/vm/code_descriptors.cc
|
| index 7833e6e15df395ed8a8743c115da1d52411ae516..80a712b5e1cbc8b579122046b5a397cc1a60ff7c 100644
|
| --- a/runtime/vm/code_descriptors.cc
|
| +++ b/runtime/vm/code_descriptors.cc
|
| @@ -53,8 +53,9 @@ RawPcDescriptors* DescriptorList::FinalizePcDescriptors(uword entry_point) {
|
|
|
|
|
| void StackmapTableBuilder::AddEntry(intptr_t pc_offset,
|
| - BitmapBuilder* bitmap) {
|
| - stack_map_ = Stackmap::New(pc_offset, bitmap);
|
| + BitmapBuilder* bitmap,
|
| + intptr_t register_count) {
|
| + stack_map_ = Stackmap::New(pc_offset, bitmap, register_count);
|
| list_.Add(stack_map_);
|
| }
|
|
|
|
|