Commit f03b24ad authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Get rid of no longer used OP_label.

parent 5c47f4a2
......@@ -677,13 +677,6 @@ static HRESULT interp_pop_scope(exec_ctx_t *ctx)
return S_OK;
}
/* ECMA-262 3rd Edition 12.12 */
static HRESULT interp_label(exec_ctx_t *ctx)
{
FIXME("\n");
return E_NOTIMPL;
}
/* ECMA-262 3rd Edition 12.13 */
static HRESULT interp_case(exec_ctx_t *ctx)
{
......
......@@ -73,7 +73,6 @@ typedef struct _func_stack {
X(int, 1, ARG_INT, 0) \
X(jmp, 0, ARG_ADDR, 0) \
X(jmp_z, 0, ARG_ADDR, 0) \
X(label, 0, 0,0) \
X(lshift, 1, 0,0) \
X(lt, 1, 0,0) \
X(lteq, 1, 0,0) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment