Per-Function flag to prevent decompilation/disassembly

For now it just sets PROC_ISLIB flag
This commit is contained in:
nemerle 2016-05-01 18:42:28 +02:00
parent d22624a99b
commit 0391f67109

View File

@ -210,6 +210,7 @@ public:
// bool anyFlagsSet(uint32_t t) { return (flg&t)!=0;} // bool anyFlagsSet(uint32_t t) { return (flg&t)!=0;}
bool hasRegArgs() const { return (flg & REG_ARGS)!=0;} bool hasRegArgs() const { return (flg & REG_ARGS)!=0;}
void markDoNotDecompile() { flg |= PROC_ISLIB; }
bool isLibrary() const { return (flg & PROC_ISLIB)!=0;} bool isLibrary() const { return (flg & PROC_ISLIB)!=0;}
void compoundCond(); void compoundCond();
void writeProcComments(); void writeProcComments();