We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2373341 commit 7ba4536Copy full SHA for 7ba4536
src/analyses/dependence_graph.cpp
@@ -312,7 +312,8 @@ void dep_graph_domaint::output(
312
it!=control_deps.end();
313
++it)
314
{
315
- if(it!=control_deps.begin()) out << ",";
+ if(it!=control_deps.begin())
316
+ out << ",";
317
out << (*it)->location_number;
318
}
319
out << std::endl;
@@ -357,7 +358,7 @@ void dependence_grapht::add_dep(
357
358
359
// add_edge is redundant as the subsequent operations also insert
360
// entries into the edge maps (implicitly)
- //add_edge(n_from, n_to);
361
+ //add_edge(n_from, n_to);asdas
362
nodes[n_from].out[n_to].add(kind);
363
nodes[n_to].in[n_from].add(kind);
364
0 commit comments