| Index: runtime/vm/code_descriptors.cc
|
| diff --git a/runtime/vm/code_descriptors.cc b/runtime/vm/code_descriptors.cc
|
| index 7833e6e15df395ed8a8743c115da1d52411ae516..379a41b6f1fc371b7a7181fc24c59345c6e27688 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_bit_count) {
|
| + stack_map_ = Stackmap::New(pc_offset, bitmap, register_bit_count);
|
| list_.Add(stack_map_);
|
| }
|
|
|
|
|