| Index: src/compiler/instruction.h
|
| diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
|
| index 084f397ceb920a1875c2335fd63ef6ccaa3bfd92..a604f5f03b775461cae20351f3d81e55898fd908 100644
|
| --- a/src/compiler/instruction.h
|
| +++ b/src/compiler/instruction.h
|
| @@ -1197,6 +1197,8 @@ class StateValueList {
|
| ZoneVector<StateValueList*>::iterator nested_iterator;
|
| };
|
|
|
| + void ReserveSize(size_t size) { fields_.reserve(size); }
|
| +
|
| StateValueList* PushRecursiveField(Zone* zone, size_t id) {
|
| fields_.push_back(StateValueDescriptor::Recursive(id));
|
| StateValueList* nested =
|
|
|