| Index: runtime/vm/code_descriptors.h
|
| diff --git a/runtime/vm/code_descriptors.h b/runtime/vm/code_descriptors.h
|
| index 21474d7559c7d0aa499c8cb3e5604914cf5a55dd..95def20750f8af701e5adcc2253a97bbb7574980 100644
|
| --- a/runtime/vm/code_descriptors.h
|
| +++ b/runtime/vm/code_descriptors.h
|
| @@ -65,9 +65,8 @@ class DescriptorList : public ZoneAllocated {
|
|
|
| class StackmapTableBuilder : public ZoneAllocated {
|
| public:
|
| - explicit StackmapTableBuilder(intptr_t entry_length)
|
| - : entry_length_(entry_length),
|
| - stack_map_(Stackmap::ZoneHandle()),
|
| + explicit StackmapTableBuilder()
|
| + : stack_map_(Stackmap::ZoneHandle()),
|
| list_(GrowableObjectArray::ZoneHandle(
|
| GrowableObjectArray::New(Heap::kOld))) { }
|
| ~StackmapTableBuilder() { }
|
| @@ -82,8 +81,6 @@ class StackmapTableBuilder : public ZoneAllocated {
|
| intptr_t Length() const { return list_.Length(); }
|
| RawStackmap* MapAt(int index) const;
|
|
|
| - // All the stackmaps in a function have the same length.
|
| - const intptr_t entry_length_;
|
| Stackmap& stack_map_;
|
| GrowableObjectArray& list_;
|
| DISALLOW_COPY_AND_ASSIGN(StackmapTableBuilder);
|
|
|