summaryrefslogtreecommitdiff
path: root/functiongraphblock.cpp
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2017-06-28 22:12:14 -0400
committerJordan Wiens <jordan@psifertex.com>2017-06-28 22:12:14 -0400
commit980e2f090fb47f7f71a46b03e8c636819f3214ec (patch)
treef981eaf7f74eebc382974def5acc997cc9a215bd /functiongraphblock.cpp
parentc51f3bed6bdef577253feee0e85a71fda1931bd7 (diff)
parentd3a401da5af8dd471adf842b63c7368c7f8e87d0 (diff)
Merging dev to master for linux demo fix -- will not change personal or
commercial builds
Diffstat (limited to 'functiongraphblock.cpp')
-rw-r--r--functiongraphblock.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/functiongraphblock.cpp b/functiongraphblock.cpp
index 99ce2e08..938fb635 100644
--- a/functiongraphblock.cpp
+++ b/functiongraphblock.cpp
@@ -130,6 +130,7 @@ const vector<FunctionGraphEdge>& FunctionGraphBlock::GetOutgoingEdges()
edge.type = edges[i].type;
edge.target = edges[i].target ? new BasicBlock(BNNewBasicBlockReference(edges[i].target)) : nullptr;
edge.points.insert(edge.points.begin(), &edges[i].points[0], &edges[i].points[edges[i].pointCount]);
+ edge.backEdge = edges[i].backEdge;
result.push_back(edge);
}