summaryrefslogtreecommitdiff
path: root/src/gtkext/graph/cluster.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-12-13 21:56:41 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-12-13 21:56:41 (GMT)
commit29b7d4dcc28eca8e807f5eb2f20a5ffdde41a9d9 (patch)
tree8a296b65237e6730ade975f9950e0625caa091ec /src/gtkext/graph/cluster.c
parent13754ff3306ed1e7f24ba00038e24d05984783d8 (diff)
Renamed the function providing basic block boundaries.
Diffstat (limited to 'src/gtkext/graph/cluster.c')
-rw-r--r--src/gtkext/graph/cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkext/graph/cluster.c b/src/gtkext/graph/cluster.c
index 88f008c..9bbfb34 100644
--- a/src/gtkext/graph/cluster.c
+++ b/src/gtkext/graph/cluster.c
@@ -864,7 +864,7 @@ static GGraphCluster *g_graph_cluster_find_lower_dest_cluster(const GGraphCluste
for (j = 0; j < rank->count && result == NULL; j++)
{
- g_basic_block_get_boundary(rank->clusters[j]->block, &instr, NULL);
+ g_basic_block_get_boundaries(rank->clusters[j]->block, &instr, NULL);
if (instr == first)
result = rank->clusters[j];