diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-04-27 13:09:24 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@gcc.gnu.org> | 2011-04-27 13:09:24 +0000 |
commit | c187d33c807f8f48b871ee4a736eb276f34763cd (patch) | |
tree | 918b7b63cab0fc48a3bae4f6d937ea9bf5e11fab | |
parent | 40982661ecee5596098183627a9f1db6cf78c03b (diff) | |
download | gcc-c187d33c807f8f48b871ee4a736eb276f34763cd.zip gcc-c187d33c807f8f48b871ee4a736eb276f34763cd.tar.gz gcc-c187d33c807f8f48b871ee4a736eb276f34763cd.tar.bz2 |
* config/spu/spu.c (spu_expand_epilogue): Do not emit barrier.
From-SVN: r173028
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/spu/spu.c | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c2dd01..db5ecd0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-04-27 Ulrich Weigand <Ulrich.Weigand@de.ibm.com> + + * config/spu/spu.c (spu_expand_epilogue): Do not emit barrier. + 2011-04-27 Jan Hubicka <jh@suse.cz> * ipa-prop.c (function_insertion_hook_holder): New holder. diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c index 1ee1c9b..3f16142 100644 --- a/gcc/config/spu/spu.c +++ b/gcc/config/spu/spu.c @@ -2107,7 +2107,7 @@ spu_expand_epilogue (bool sibcall_p) int size = get_frame_size (), offset, regno; HOST_WIDE_INT saved_regs_size, total_size; rtx sp_reg = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM); - rtx jump, scratch_reg_0; + rtx scratch_reg_0; if (spu_naked_function_p (current_function_decl)) return; @@ -2149,10 +2149,8 @@ spu_expand_epilogue (bool sibcall_p) if (!sibcall_p) { emit_use (gen_rtx_REG (SImode, LINK_REGISTER_REGNUM)); - jump = emit_jump_insn (gen__return ()); - emit_barrier_after (jump); + emit_jump_insn (gen__return ()); } - } rtx |