diff options
Diffstat (limited to 'gcc/ssa-dce.c')
-rw-r--r-- | gcc/ssa-dce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ssa-dce.c b/gcc/ssa-dce.c index de763219aa7..797a01ca68a 100644 --- a/gcc/ssa-dce.c +++ b/gcc/ssa-dce.c @@ -707,7 +707,7 @@ ssa_eliminate_dead_code () /* Create an edge from this block to the post dominator. What about the PHI nodes at the target? */ - make_edge (NULL, bb, pdom_bb, 0); + make_edge (bb, pdom_bb, 0); /* Third, transform this insn into an unconditional jump to the label for the immediate postdominator. */ |