Per-Function flag to prevent decompilation/disassembly
For now it just sets PROC_ISLIB flag
This commit is contained in:
parent
d22624a99b
commit
0391f67109
@ -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();
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user