MCPcopy Create free account
hub / github.com/KasperskyLab/hrtng / visit_expr

Function visit_expr

src/structures.cpp:1112–1119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1110 return 0; // recalc_parent_types does not help
1111 }
1112 int idaapi visit_expr(cexpr_t *e)
1113 {
1114 if(e->op == cot_asg)
1115 return assignVT(e);
1116 if(e->op == cot_call)
1117 return selectVT(e);
1118 return 0;
1119 }
1120 };
1121 vtbl_locator_t l(cfunc);
1122 l.apply_to_exprs(&cfunc->body, nullptr);

Callers

nothing calls this directly

Calls 2

assignVTFunction · 0.85
selectVTFunction · 0.85

Tested by

no test coverage detected