Index: src/mips/lithium-gap-resolver-mips.cc |
diff --git a/src/mips/lithium-gap-resolver-mips.cc b/src/mips/lithium-gap-resolver-mips.cc |
index 4a5fbe39c5970dc8d0f887258f8a3181853200c9..87efae5f4df6aead3e356bda21a14a2161e614c8 100644 |
--- a/src/mips/lithium-gap-resolver-mips.cc |
+++ b/src/mips/lithium-gap-resolver-mips.cc |
@@ -35,7 +35,7 @@ namespace internal { |
LGapResolver::LGapResolver(LCodeGen* owner) |
: cgen_(owner), |
- moves_(32), |
+ moves_(32, owner->zone()), |
root_index_(0), |
in_cycle_(false), |
saved_destination_(NULL) {} |
@@ -80,7 +80,7 @@ void LGapResolver::BuildInitialMoveList(LParallelMove* parallel_move) { |
const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); |
for (int i = 0; i < moves->length(); ++i) { |
LMoveOperands move = moves->at(i); |
- if (!move.IsRedundant()) moves_.Add(move); |
+ if (!move.IsRedundant()) moves_.Add(move, cgen_->zone()); |
} |
Verify(); |
} |