Fix bogus assertion left in bug 463334.

This commit is contained in:
Brendan Eich 2008-11-14 13:23:12 -08:00
parent ea86c32d99
commit 2cdbbe7481

View File

@ -2956,7 +2956,7 @@ js_Interpret(JSContext *cx)
JS_ASSERT(op == JSOP_STOP);
end_imacro:
JS_ASSERT((uintN)(regs.sp - fp->slots) < script->nslots);
JS_ASSERT((uintN)(regs.sp - fp->slots) <= script->nslots);
regs.pc = fp->imacpc + js_CodeSpec[*fp->imacpc].length;
fp->imacpc = NULL;
atoms = script->atomMap.vector;