MCPcopy Create free account
hub / github.com/REhints/HexRaysCodeXplorer / fixFunction

Function fixFunction

src/HexRaysCodeXplorer/MSVCObjectFormatParser.cpp:691–702  ·  view source on GitHub ↗

Make address a function

Source from the content-addressed store, hash-verified

689
690// Make address a function
691void 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
705bool getVerifyEa(ea_t ea, ea_t &rValue)

Callers 1

getTableInfoMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected