[INFER] Fix overly aggressive assert, bug 609899.

This commit is contained in:
Brian Hackett 2010-12-06 15:54:16 -08:00
parent 0b8c4f9723
commit c80dca0547

View File

@ -935,7 +935,7 @@ LifetimeScript::analyze(JSContext *cx, analyze::Script *analysis, JSScript *scri
targetOffset = targetOffset + GetJumpOffset(target, target);
} else {
/* This is a loop back edge, no lifetime to pull in yet. */
JS_ASSERT(nop == JSOP_TRACE);
JS_ASSERT(nop == JSOP_TRACE || nop == JSOP_NOTRACE);
codeArray[targetOffset].loopBackedge = offset;
break;
}