| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index ebeba86943ad5ee7fefaa81183f83ae4b1fdcda5..2de35467a6b70c4f30ff3434a1b23e3f2cd582ad 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -334,7 +334,9 @@ class LGap: public LTemplateInstruction<0, 0, 0> {
|
| };
|
|
|
| LParallelMove* GetOrCreateParallelMove(InnerPosition pos) {
|
| - if (parallel_moves_[pos] == NULL) parallel_moves_[pos] = new LParallelMove;
|
| + if (parallel_moves_[pos] == NULL) {
|
| + parallel_moves_[pos] = new LParallelMove(block_->zone());
|
| + }
|
| return parallel_moves_[pos];
|
| }
|
|
|
|
|