| 165 | |
| 166 | |
| 167 | static void PrintFlag(LowLevelILFunction* func, uint32_t flag) |
| 168 | { |
| 169 | if (LLIL_REG_IS_TEMP(flag)) |
| 170 | printf("cond:%d", LLIL_GET_TEMP_REG_INDEX(flag)); |
| 171 | else |
| 172 | { |
| 173 | string name = func->GetArchitecture()->GetFlagName(flag); |
| 174 | if (name.size() == 0) |
| 175 | printf("<no name>"); |
| 176 | else |
| 177 | printf("%s", name.c_str()); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | |
| 182 | static void PrintILExpr(const LowLevelILInstruction& instr, size_t indent) |
no test coverage detected