diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sh/sh.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f96f690..22200e5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-08-17 Kaz Kojima <kkojima@gcc.gnu.org> + + PR target/50068 + * config/sh/sh.c (sh_output_mi_thunk): Don't call dbr_schedule. + 2011-08-17 Richard Guenther <rguenther@suse.de> * tree.h (convert_to_ptrofftype_loc): New function. diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 31d9cfc..1b81e25 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -11711,10 +11711,6 @@ sh_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED, } sh_reorg (); - - if (optimize > 0 && flag_delayed_branch) - dbr_schedule (insns); - shorten_branches (insns); final_start_function (insns, file, 1); final (insns, file, 1); |