diff options
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index ebe662ad639..9cd5f16f488 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -1465,7 +1465,7 @@ assemble_thunk (struct cgraph_node *node) if (restmp && !this_adjusting) { - tree true_label = NULL_TREE, false_label = NULL_TREE; + tree true_label = NULL_TREE; if (TREE_CODE (TREE_TYPE (restmp)) == POINTER_TYPE) { @@ -1479,7 +1479,6 @@ assemble_thunk (struct cgraph_node *node) else_bb = create_basic_block (NULL, (void *) 0, else_bb); remove_edge (single_succ_edge (bb)); true_label = gimple_block_label (then_bb); - false_label = gimple_block_label (else_bb); stmt = gimple_build_cond (NE_EXPR, restmp, fold_convert (TREE_TYPE (restmp), integer_zero_node), |