Fixed an signed/unsigned comparison warning in an assert in jstracer.cpp.

This commit is contained in:
Andreas Gal 2008-08-29 17:54:39 -07:00
parent 33c4a8e742
commit ea15fc19ef

View File

@ -2235,7 +2235,7 @@ js_ExecuteTree(JSContext* cx, Fragment** treep, uintN& inlineCallCount,
slots = FlushNativeStackFrame(cx, e->calldepth, e->typeMap + e->numGlobalSlots, stack, NULL);
if (slots < 0)
return NULL;
JS_ASSERT(slots == e->numStackSlots);
JS_ASSERT(unsigned(slots) == e->numStackSlots);
AUDIT(sideExitIntoInterpreter);