sh.c (split_branches): Pass zero to redirect_jump as 'delete_unused' argument.
* config/sh/sh.c (split_branches): Pass zero to redirect_jump as 'delete_unused' argument. From-SVN: r133402
This commit is contained in:
parent
16ac857550
commit
2acdc1fb2d
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-03-20 Kaz Kojima <kkojima@gcc.gnu.org>
|
||||
|
||||
* config/sh/sh.c (split_branches): Pass zero to redirect_jump
|
||||
as 'delete_unused' argument.
|
||||
|
||||
2008-03-20 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Remove
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Output routines for GCC for Renesas / SuperH SH.
|
||||
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||
2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
||||
Contributed by Steve Chamberlain (sac@cygnus.com).
|
||||
Improved by Jim Wilson (wilson@cygnus.com).
|
||||
|
||||
|
@ -5283,7 +5283,7 @@ split_branches (rtx first)
|
|||
bp->insert_place = insn;
|
||||
bp->address = addr;
|
||||
}
|
||||
ok = redirect_jump (insn, label, 1);
|
||||
ok = redirect_jump (insn, label, 0);
|
||||
gcc_assert (ok);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue