uncomment assert (opcode <=4)

This commit is contained in:
e.gavrin
2014-07-09 19:58:28 +04:00
parent 80ee7731e3
commit 7c55a15002
2 changed files with 10 additions and 11 deletions
+2 -2
View File
@@ -31,10 +31,10 @@ opfunc __opfuncs[LAST_OP];
struct __int_data
{
int pos;
int pos; /**< current opcode to execute */
ecma_Object_t *pThisBinding; /**< this binding for current context */
ecma_Object_t *pLexEnv; /**< current lexical environment */
int *root_op_addr;
int *root_op_addr; /**< pointer to first opcode saved */
};
void gen_bytecode (void);