Remove tracer bits from InterpMode (no bug, r=dvander)

--HG--
extra : rebase_source : a7d4938398584a21daa369bf6409decd647ac295
This commit is contained in:
Luke Wagner 2012-01-06 09:36:49 -08:00
parent e0187b6aa9
commit 9131ef84b8

View File

@ -215,10 +215,8 @@ Execute(JSContext *cx, JSScript *script, JSObject &scopeChain, Value *rval);
enum InterpMode
{
JSINTERP_NORMAL = 0, /* interpreter is running normally */
JSINTERP_RECORD = 1, /* interpreter has been started to record/run traces */
JSINTERP_PROFILE = 2, /* interpreter should profile a loop */
JSINTERP_REJOIN = 3, /* as normal, but the frame has already started */
JSINTERP_SKIP_TRAP = 4 /* as REJOIN, but skip trap at first opcode */
JSINTERP_REJOIN = 1, /* as normal, but the frame has already started */
JSINTERP_SKIP_TRAP = 2 /* as REJOIN, but skip trap at first opcode */
};
/*