| 135 | |
| 136 | |
| 137 | static void PrintVariable(MediumLevelILFunction* func, const Variable& var) |
| 138 | { |
| 139 | string name = func->GetFunction()->GetVariableName(var); |
| 140 | if (name.size() == 0) |
| 141 | printf("<no name>"); |
| 142 | else |
| 143 | printf("%s", name.c_str()); |
| 144 | } |
| 145 | |
| 146 | |
| 147 | static void PrintILExpr(const MediumLevelILInstruction& instr, size_t indent) |
no test coverage detected