rl78.md (return): Rename to rl78_return.
* config/rl78/rl78.md (return): Rename to rl78_return. * config/rl78/rl78.c (rl78_expand_epilogue): Use new name. (rl78_expand_eh_epilogue): Use new name. (rl78_calculate_death_notes): Likewise. From-SVN: r182390
This commit is contained in:
parent
1b26c26bb0
commit
794f3386b6
@ -1,3 +1,10 @@
|
||||
2011-12-15 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* config/rl78/rl78.md (return): Rename to rl78_return.
|
||||
* config/rl78/rl78.c (rl78_expand_epilogue): Use new name.
|
||||
(rl78_expand_eh_epilogue): Use new name.
|
||||
(rl78_calculate_death_notes): Likewise.
|
||||
|
||||
2011-12-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* tree-vectorizer.h (struct _stmt_vec_info): Remove pattern_def_stmt
|
||||
|
@ -903,7 +903,7 @@ rl78_expand_epilogue (void)
|
||||
else if (is_interrupt_func (cfun->decl))
|
||||
emit_jump_insn (gen_interrupt_return ());
|
||||
else
|
||||
emit_jump_insn (gen_return ());
|
||||
emit_jump_insn (gen_rl78_return ());
|
||||
}
|
||||
|
||||
/* Likewise, for exception handlers. */
|
||||
@ -911,7 +911,7 @@ void
|
||||
rl78_expand_eh_epilogue (rtx x ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* FIXME - replace this with an indirect jump with stack adjust. */
|
||||
emit_jump_insn (gen_return ());
|
||||
emit_jump_insn (gen_rl78_return ());
|
||||
}
|
||||
|
||||
#undef TARGET_ASM_FUNCTION_PROLOGUE
|
||||
@ -2390,7 +2390,7 @@ rl78_calculate_death_notes (void)
|
||||
break;
|
||||
|
||||
case JUMP_INSN:
|
||||
if (INSN_CODE (insn) == CODE_FOR_return)
|
||||
if (INSN_CODE (insn) == CODE_FOR_rl78_return)
|
||||
{
|
||||
memset (dead, 1, sizeof (dead));
|
||||
/* We expect a USE just prior to this, which will mark
|
||||
|
@ -87,7 +87,7 @@
|
||||
"FAIL;"
|
||||
)
|
||||
|
||||
(define_insn "return"
|
||||
(define_insn "rl78_return"
|
||||
[(return)]
|
||||
""
|
||||
"ret"
|
||||
|
Loading…
Reference in New Issue
Block a user