implemented some more opcode

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%4081
This commit is contained in:
David Anderson
2006-09-20 15:51:05 +00:00
parent 1577897925
commit 0503ac73b7
6 changed files with 178 additions and 8 deletions
+3 -1
View File
@@ -13,7 +13,8 @@ using namespace SourcePawn;
class CompData : public ICompilation
{
public:
CompData() : plugin(NULL), debug(false), inline_level(3)
CompData() : plugin(NULL),
debug(false), inline_level(3), checks(true)
{
};
public:
@@ -22,6 +23,7 @@ public:
jitoffs_t jit_verify_addr_eax;
jitoffs_t jit_verify_addr_edx;
int inline_level;
bool checks;
bool debug;
};