Index: src/mips64/code-stubs-mips64.cc |
diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc |
index 50d1b03b31f8d4dd2383331b0fda1a1e424d5737..b0ba0d98a082068bce6c2d6e4585a2ddd4b95430 100644 |
--- a/src/mips64/code-stubs-mips64.cc |
+++ b/src/mips64/code-stubs-mips64.cc |
@@ -5258,7 +5258,7 @@ void FastNewRestParameterStub::Generate(MacroAssembler* masm) { |
Label allocate, done_allocate; |
__ li(a1, Operand(JSArray::kSize + FixedArray::kHeaderSize)); |
__ Dlsa(a1, a1, a0, kPointerSizeLog2); |
- __ Allocate(a1, v0, a3, at, &allocate, TAG_OBJECT); |
+ __ Allocate(a1, v0, a3, t0, &allocate, TAG_OBJECT); |
balazs.kilvady
2016/02/11 17:07:49
I think a4 should be used instead of t0 on MIPS64.
|
__ bind(&done_allocate); |
// Compute arguments.length in a4. |