Bug 1250031 - IonMonkey: MIPS: Fix ion/bug1233343.js crash. r=h4writer

---
 js/src/jit/SharedIC.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
This commit is contained in:
Heiher 2016-02-29 17:20:18 +08:00
Родитель 56bdfe820a
Коммит 60ea58c4de
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -732,7 +732,8 @@ ICStubCompiler::getStubCode()
// Compile new stubcode.
JitContext jctx(cx, nullptr);
MacroAssembler masm;
#ifndef JS_USE_LINK_REGISTER
#if !defined(JS_USE_LINK_REGISTER) && \
!(defined(JS_CODEGEN_MIPS32) || defined(JS_CODEGEN_MIPS64))
// The first value contains the return addres,
// which we pull into ICTailCallReg for tail calls.
masm.adjustFrame(sizeof(intptr_t));