Merge pull request #526 from martin-cs/fix-cfg-dominator-top

Fix cfg dominator top
This commit is contained in:
Daniel Kroening 2017-03-13 15:26:36 +00:00 committed by GitHub
commit eb93231018
1 changed files with 0 additions and 5 deletions

View File

@ -35,7 +35,6 @@ public:
void operator()(P &program);
target_sett top;
T entry_node;
void output(std::ostream &) const;
@ -101,10 +100,6 @@ template <class P, class T, bool post_dom>
void cfg_dominators_templatet<P, T, post_dom>::initialise(P &program)
{
cfg(program);
// initialise top element
for(const auto &node : cfg.entry_map)
top.insert(cfg[node.second].PC);
}
/*******************************************************************\