Make address a function
| 689 | |
| 690 | // Make address a function |
| 691 | void fixFunction(ea_t ea) |
| 692 | { |
| 693 | flags_t flags = get_flags(ea); |
| 694 | if (!is_code(flags)) |
| 695 | { |
| 696 | create_insn(ea); |
| 697 | add_func(ea, BADADDR); |
| 698 | } |
| 699 | else |
| 700 | if (!is_func(flags)) |
| 701 | add_func(ea, BADADDR); |
| 702 | } |
| 703 | |
| 704 | // Get IDA EA bit value with verification |
| 705 | bool getVerifyEa(ea_t ea, ea_t &rValue) |