| Index: src/compiler/instruction.h
|
| diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
|
| index 21734470919f475b63e71ce57e4507f4210fe78d..9a5b87d63801bc6f54209c74faa1cbd6ff75cb77 100644
|
| --- a/src/compiler/instruction.h
|
| +++ b/src/compiler/instruction.h
|
| @@ -616,6 +616,8 @@ class GapInstruction : public Instruction {
|
|
|
| bool IsRedundant() const;
|
|
|
| + ParallelMove** parallel_moves() { return parallel_moves_; }
|
| +
|
| static GapInstruction* New(Zone* zone) {
|
| void* buffer = zone->New(sizeof(GapInstruction));
|
| return new (buffer) GapInstruction(kGapInstruction);
|
|
|