| 532 | } |
| 533 | |
| 534 | static bool IsPCRelativeDataAddress(decomp_result* instr, bool ifThenBlock) |
| 535 | { |
| 536 | if ((instr->format->operandCount == 3) && (instr->format->operands[1].type == OPERAND_FORMAT_PC) |
| 537 | && (instr->format->operands[2].type == OPERAND_FORMAT_IMM) && !WritesToStatus(instr, ifThenBlock)) |
| 538 | return true; |
| 539 | |
| 540 | return false; |
| 541 | } |
| 542 | |
| 543 | |
| 544 | bool GetLowLevelILForThumbInstruction(Architecture* arch, LowLevelILFunction& il, decomp_result* instr, bool ifThenBlock) |
no test coverage detected