Index: src/mips/builtins-mips.cc |
diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc |
index 857fc12ba890c5cada0a46fa63b394b62728965f..b46a2d6e0f89557e0e0dfbe1d1945eb7c84e4c47 100644 |
--- a/src/mips/builtins-mips.cc |
+++ b/src/mips/builtins-mips.cc |
@@ -1571,20 +1571,20 @@ void Builtins::Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm) { |
// Adjust for return address and receiver. |
__ Addu(a0, a0, Operand(2 * kPointerSize)); |
// Compute copy end address. Also adjust for return address. |
- __ Addu(t1, fp, kPointerSize); |
+ __ Addu(t3, fp, kPointerSize); |
// Copy the arguments (including the receiver) to the new stack frame. |
// a0: copy start address |
// a1: function |
// a2: expected number of arguments |
// a3: code entry to call |
- // t1: copy end address |
+ // t3: copy end address |
Label copy; |
__ bind(©); |
__ lw(t0, MemOperand(a0)); // Adjusted above for return addr and receiver. |
__ push(t0); |
__ Subu(a0, a0, kPointerSize); |
- __ Branch(©, ne, a0, Operand(t1)); |
+ __ Branch(©, ne, a0, Operand(t3)); |
// Fill the remaining expected arguments with undefined. |
// a1: function |