Fix "unused variable tm" warning I introduced a few days ago. No bug#, r=shaver.

This commit is contained in:
Jason Orendorff 2009-04-15 19:44:25 -05:00
parent b02039ae3d
commit 390c860d16

View File

@ -3654,8 +3654,7 @@ js_AttemptToStabilizeTree(JSContext* cx, VMSideExit* exit, jsbytecode* outer)
static JS_REQUIRES_STACK bool
js_AttemptToExtendTree(JSContext* cx, VMSideExit* anchor, VMSideExit* exitedFrom, jsbytecode* outer)
{
JSTraceMonitor* tm = &JS_TRACE_MONITOR(cx);
JS_ASSERT(!tm->needFlush);
JS_ASSERT(!JS_TRACE_MONITOR(cx).needFlush);
Fragment* f = anchor->from->root;
JS_ASSERT(f->vmprivate);
TreeInfo* ti = (TreeInfo*)f->vmprivate;