| Index: src/compiler/instruction.h
|
| diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
|
| index 5d8864eea7d006197a54c19d6e44b6f7cbf2dd62..546486c09009fe767c030cf59be5962a02ac17c6 100644
|
| --- a/src/compiler/instruction.h
|
| +++ b/src/compiler/instruction.h
|
| @@ -20,6 +20,7 @@
|
| #include "src/macro-assembler.h"
|
| #include "src/register-configuration.h"
|
| #include "src/zone/zone-allocator.h"
|
| +#include "src/zone/zone-chunk-list.h"
|
|
|
| namespace v8 {
|
| namespace internal {
|
| @@ -725,8 +726,7 @@ struct PrintableMoveOperands {
|
| std::ostream& operator<<(std::ostream& os, const PrintableMoveOperands& mo);
|
|
|
| class V8_EXPORT_PRIVATE ParallelMove final
|
| - : public NON_EXPORTED_BASE(ZoneVector<MoveOperands *>),
|
| - public NON_EXPORTED_BASE(ZoneObject) {
|
| + : public NON_EXPORTED_BASE(ZoneVector<MoveOperands*>) {
|
| public:
|
| explicit ParallelMove(Zone* zone) : ZoneVector<MoveOperands*>(zone) {
|
| reserve(4);
|
| @@ -767,7 +767,6 @@ struct PrintableParallelMove {
|
|
|
| std::ostream& operator<<(std::ostream& os, const PrintableParallelMove& pm);
|
|
|
| -
|
| class ReferenceMap final : public ZoneObject {
|
| public:
|
| explicit ReferenceMap(Zone* zone)
|
| @@ -1148,7 +1147,6 @@ class StateValueDescriptor {
|
| ZoneVector<StateValueDescriptor> fields_;
|
| };
|
|
|
| -
|
| class FrameStateDescriptor : public ZoneObject {
|
| public:
|
| FrameStateDescriptor(Zone* zone, FrameStateType type, BailoutId bailout_id,
|
|
|