| Index: runtime/vm/raw_object.h
|
| ===================================================================
|
| --- runtime/vm/raw_object.h (revision 34118)
|
| +++ runtime/vm/raw_object.h (working copy)
|
| @@ -880,7 +880,7 @@
|
| class RawPcDescriptors : public RawObject {
|
| RAW_HEAP_OBJECT_IMPLEMENTATION(PcDescriptors);
|
|
|
| - RawSmi* length_; // Number of descriptors.
|
| + intptr_t length_; // Number of descriptors.
|
|
|
| // Variable length data follows here.
|
| intptr_t data_[0];
|
| @@ -899,8 +899,6 @@
|
| class RawStackmap : public RawObject {
|
| RAW_HEAP_OBJECT_IMPLEMENTATION(Stackmap);
|
|
|
| - RawCode* code_; // Code object corresponding to the frame described.
|
| -
|
| // TODO(kmillikin): We need a small number of bits to encode the register
|
| // count. Consider packing them in with the length.
|
| intptr_t length_; // Length of payload, in bits.
|
|
|