Skip to content
Snippets Groups Projects
Commit 805cec6d authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

Merge branch 'master' of git.zephyr-software.com:allnp/security_transforms

Former-commit-id: b74fc645f1c5ddc1a27c3a055491fdd5a149116d
parents 38ce6dc4 3161f044
No related branches found
No related tags found
No related merge requests found
......@@ -89,3 +89,12 @@ void CriticalEdgeAnalyzer_t::init()
}
}
}
unique_ptr<IRDB_SDK::CriticalEdges_t> IRDB_SDK::CriticalEdges_t::factory(
const IRDB_SDK::ControlFlowGraph_t &p_cfg,
const bool p_conservative)
{
auto real_cfg = dynamic_cast<const libIRDB::ControlFlowGraph_t*>(&p_cfg);
return unique_ptr<IRDB_SDK::CriticalEdges_t>(new libIRDB::CriticalEdgeAnalyzer_t(
real_cfg, p_conservative));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment