X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=lib%2Fas3%2Fopcodes.h;h=67698bc44b59f50928a135fc4ff85697f07cab65;hb=1f0a5e059f4f08808b763470f476ec016faf062b;hp=e4cbb7a02e92285e632db5577cf35821dc4c1a85;hpb=12e880e9b760047bf45b337ad1b8bf3b2d36f952;p=swftools.git diff --git a/lib/as3/opcodes.h b/lib/as3/opcodes.h index e4cbb7a..67698bc 100644 --- a/lib/as3/opcodes.h +++ b/lib/as3/opcodes.h @@ -263,8 +263,8 @@ code_t* abc_pushdouble(code_t*prev, double f); #define pushdouble(method,f) (method->code = abc_pushdouble(method->code,f)) code_t* abc_pushfalse(code_t*prev); #define pushfalse(method) (method->code = abc_pushfalse(method->code)) -code_t* abc_pushint(code_t*prev, abc_method_t* m); -#define pushint(method,m) (method->code = abc_pushint(method->code,m)) +code_t* abc_pushint(code_t*prev, int i); +#define pushint(method,i) (method->code = abc_pushint(method->code,i)) code_t* abc_pushnamespace(code_t*prev, int v); #define pushnamespace(method,v) (method->code = abc_pushnamespace(method->code,v)) code_t* abc_pushnan(code_t*prev); @@ -327,4 +327,6 @@ code_t* abc_typeof(code_t*prev); #define typeof(method) (method->code = abc_typeof(method->code)) code_t* abc_urshift(code_t*prev); #define urshift(method) (method->code = abc_urshift(method->code)) +code_t* abc___break__(code_t*prev); +#define __break__(method) (method->code = abc___break__(method->code)) #endif