* pa.c (following_call): Check TARGET_JUMP_IN_DELAY.

From-SVN: r54084
This commit is contained in:
John David Anglin 2002-05-31 03:30:42 +00:00 committed by John David Anglin
parent bbf0fcca54
commit 6d8d2bbc83
2 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2002-05-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
* pa.c (following_call): Check TARGET_JUMP_IN_DELAY.
2002-05-31 Jason Thorpe <thorpej@wasabisystems.com>
* config.gcc (ns32k-*-netbsd*): Set tm_file to

View File

@ -6897,11 +6897,7 @@ int
following_call (insn)
rtx insn;
{
/* We do not place jumps into call delay slots when optimizing for the
PA8000 processor or when generating dwarf2 call frame information. */
if (pa_cpu >= PROCESSOR_8000
|| (! USING_SJLJ_EXCEPTIONS && flag_exceptions)
|| flag_unwind_tables)
if (! TARGET_JUMP_IN_DELAY)
return 0;
/* Find the previous real insn, skipping NOTEs. */