diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-03-30 17:20:58 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-03-30 17:20:58 (GMT) |
commit | dda68634391bea512a7861468fcf45f8292300bb (patch) | |
tree | c56c9b1c0bb4500973247eef12ccadaf4ebe346d /src/gtkext | |
parent | b8d5a539b1e6837f7395598a3fa25ef69650e885 (diff) |
Discriminated between tests for set and unset ranges of bits.
Diffstat (limited to 'src/gtkext')
-rw-r--r-- | src/gtkext/graph/cluster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkext/graph/cluster.c b/src/gtkext/graph/cluster.c index c1ed8ce..9aee82c 100644 --- a/src/gtkext/graph/cluster.c +++ b/src/gtkext/graph/cluster.c @@ -1631,7 +1631,7 @@ static GGraphCluster *setup_graph_clusters(GLoadedBinary *binary, const GBlockLi block = pending->list[i]; dominators = g_basic_block_get_domination(block); - if (test_in_bit_field(dominators, index, 1)) + if (test_in_bit_field(dominators, index)) { /* Dépilement */ |