MIPS: Fix of r16681

Use v0 for return value.

BUG=
R=gergely@homejinni.com

Review URL: https://codereview.chromium.org/23437032

Patch from Balazs Kilvady <kilvadyb@homejinni.com>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16694 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
palfia@homejinni.com 2013-09-12 20:11:26 +00:00
parent 5521e2e825
commit 705d813291

View File

@ -337,7 +337,7 @@ void Builtins::Generate_InRecompileQueue(MacroAssembler* masm) {
CallRuntimePassFunction(masm, Runtime::kTryInstallRecompiledCode);
// Tail call to returned code.
__ Addu(at, a2, Operand(Code::kHeaderSize - kHeapObjectTag));
__ Addu(at, v0, Operand(Code::kHeaderSize - kHeapObjectTag));
__ Jump(at);
__ bind(&ok);