Module: wine Branch: master Commit: f03b24ad3ed34ee8705f2515a58516dbd770596d URL: http://source.winehq.org/git/wine.git/?a=commit;h=f03b24ad3ed34ee8705f2515a5...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Jan 17 12:42:20 2012 +0100
jscript: Get rid of no longer used OP_label.
---
dlls/jscript/engine.c | 7 ------- dlls/jscript/engine.h | 1 - 2 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/dlls/jscript/engine.c b/dlls/jscript/engine.c index 77fabe3..b1b7c69 100644 --- a/dlls/jscript/engine.c +++ b/dlls/jscript/engine.c @@ -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) { diff --git a/dlls/jscript/engine.h b/dlls/jscript/engine.h index 4afec15..cb7edbb 100644 --- a/dlls/jscript/engine.h +++ b/dlls/jscript/engine.h @@ -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) \