diff options
Diffstat (limited to 'gcc/tree-ssa-threadupdate.c')
-rw-r--r-- | gcc/tree-ssa-threadupdate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-threadupdate.c b/gcc/tree-ssa-threadupdate.c index e1e0d3e..c0d5b47 100644 --- a/gcc/tree-ssa-threadupdate.c +++ b/gcc/tree-ssa-threadupdate.c @@ -616,9 +616,9 @@ redirect_edges (void **slot, void *data) rd->outgoing_edge->dest); /* And fixup the flags on the single remaining edge. */ - EDGE_SUCC (local_info->bb, 0)->flags + single_succ_edge (local_info->bb)->flags &= ~(EDGE_TRUE_VALUE | EDGE_FALSE_VALUE | EDGE_ABNORMAL); - EDGE_SUCC (local_info->bb, 0)->flags |= EDGE_FALLTHRU; + single_succ_edge (local_info->bb)->flags |= EDGE_FALLTHRU; } } |