diff options
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 20c25bd59e5..48d43a63dde 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -1998,14 +1998,14 @@ fix_crossing_unconditional_branches (void) if (JUMP_P (last_insn) && (succ->flags & EDGE_CROSSING)) { - rtx label2, table; + rtx label2; gcc_assert (!any_condjump_p (last_insn)); /* Make sure the jump is not already an indirect or table jump. */ if (!computed_jump_p (last_insn) - && !tablejump_p (last_insn, &label2, &table)) + && !tablejump_p (last_insn, &label2, NULL)) { /* We have found a "crossing" unconditional branch. Now we must convert it to an indirect jump. First create |