sh.c (expand_prologue): Fix mis-applied 2001-11-09's patch.

* config/sh/sh.c (expand_prologue): Fix mis-applied 2001-11-09's
patch.

From-SVN: r49631
This commit is contained in:
Alexandre Oliva 2002-02-09 03:51:25 +00:00 committed by Alexandre Oliva
parent fa5322fa58
commit 2b1fd83f62
2 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,8 @@
2002-02-09 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.c (expand_prologue): Fix mis-applied 2001-11-09's
patch.
Contribute sh64-elf.
2002-02-09 Alexandre Oliva <aoliva@redhat.com>
* config/sh/sh.c (TARGET_CANNOT_MODIFY_JUMPS_P): Define to...

View File

@ -4453,6 +4453,13 @@ sh_expand_prologue ()
extra_push = 0;
if (TARGET_SHCOMPACT && flag_pic && current_function_args_info.call_cookie)
/* We're going to use the PIC register to load the address of the
incoming-argument decoder and/or of the return trampoline from
the GOT, so make sure the PIC register is preserved and
initialized. */
regs_ever_live[PIC_OFFSET_TABLE_REGNUM] = 1;
if (TARGET_SHCOMPACT
&& (current_function_args_info.call_cookie & ~ CALL_COOKIE_RET_TRAMP(1)))
{
@ -4734,13 +4741,6 @@ sh_expand_prologue ()
if (frame_pointer_needed)
emit_insn (GEN_MOV (frame_pointer_rtx, stack_pointer_rtx));
if (TARGET_SHCOMPACT && flag_pic && current_function_args_info.call_cookie)
/* We're going to use the PIC register to load the address of the
incoming-argument decoder and/or of the return trampoline from
the GOT, so make sure the PIC register is preserved and
initialized. */
regs_ever_live[PIC_OFFSET_TABLE_REGNUM] = 1;
if (TARGET_SHCOMPACT
&& (current_function_args_info.call_cookie & ~ CALL_COOKIE_RET_TRAMP(1)))
{