From 90a5b1414dc700c174a95f080c7b49a541ea3d64 Mon Sep 17 00:00:00 2001 From: "mvstanton@chromium.org" Date: Wed, 4 Jun 2014 12:09:10 +0000 Subject: [PATCH] Flag --pretenure-call-new broken on MIPS. A label in JSConstructStubHelper was in the wrong place. R=hpayer@chromium.org Review URL: https://codereview.chromium.org/315963002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21674 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mips/builtins-mips.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc index 248c0af..800a79e 100644 --- a/src/mips/builtins-mips.cc +++ b/src/mips/builtins-mips.cc @@ -616,6 +616,7 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, // Receiver for constructor call allocated. // t4: JSObject + __ bind(&allocated); if (create_memento) { __ lw(a2, MemOperand(sp, kPointerSize * 2)); @@ -631,7 +632,6 @@ static void Generate_JSConstructStubHelper(MacroAssembler* masm, __ bind(&count_incremented); } - __ bind(&allocated); __ Push(t4, t4); // Reload the number of arguments from the stack. -- 2.7.4