Backed out changeset 97977f224aff due to build breakage

This commit is contained in:
Igor Bukanov
2008-06-20 11:46:36 +02:00
parent 8b4ddb3ea7
commit ab82078dd6
13 changed files with 244 additions and 278 deletions

View File

@@ -60,6 +60,14 @@ typedef enum JSOp {
JSOP_LIMIT
} JSOp;
typedef enum JSOpLength {
#define OPDEF(op,val,name,token,length,nuses,ndefs,prec,format) \
op##_LENGTH = length,
#include "jsopcode.tbl"
#undef OPDEF
JSOP_LIMIT_LENGTH
} JSOpLength;
/*
* JS bytecode formats.
*/