| 517 | |
| 518 | |
| 519 | static bool WritesToStatus(decomp_result* instr, bool ifThenBlock) |
| 520 | { |
| 521 | if (ifThenBlock) |
| 522 | return false; |
| 523 | if (instr->format->operationFlags & INSTR_FORMAT_FLAG_OPTIONAL_STATUS) |
| 524 | { |
| 525 | if (IS_FIELD_PRESENT(instr, FIELD_S)) |
| 526 | { |
| 527 | if (instr->fields[FIELD_S]) |
| 528 | return true; |
| 529 | } |
| 530 | } |
| 531 | return false; |
| 532 | } |
| 533 | |
| 534 | static bool IsPCRelativeDataAddress(decomp_result* instr, bool ifThenBlock) |
| 535 | { |
no outgoing calls
no test coverage detected