mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
jscript: Get rid of no longer used OP_label.
This commit is contained in:
parent
5c47f4a269
commit
f03b24ad3e
2 changed files with 0 additions and 8 deletions
|
@ -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) \
|
||||
|
|
Loading…
Reference in a new issue