From a31f2d4b14ebfbbbbe4b39d4c1f72ed57f138289 Mon Sep 17 00:00:00 2001 From: Hannes Verschore Date: Tue, 24 Nov 2015 08:02:03 +0100 Subject: [PATCH] Bug 1226445: SharedStubs - Keep track of the pushed frames correctly in GetPropCallNative, r=jandem --- js/src/jit/SharedIC.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/src/jit/SharedIC.cpp b/js/src/jit/SharedIC.cpp index ab4cf88a0f8..e404d245214 100644 --- a/js/src/jit/SharedIC.cpp +++ b/js/src/jit/SharedIC.cpp @@ -3689,8 +3689,8 @@ ICGetPropCallNativeCompiler::generateStubCode(MacroAssembler& masm) masm.extractObject(Address(objReg, ScopeObject::offsetOfEnclosingScope()), objReg); // Push args for vm call. - masm.push(objReg); - masm.push(callee); + masm.Push(objReg); + masm.Push(callee); regs.add(R0);