Commit 6d8d2bbc by John David Anglin Committed by John David Anglin

* pa.c (following_call): Check TARGET_JUMP_IN_DELAY.

From-SVN: r54084
parent bbf0fcca
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> 2002-05-31 Jason Thorpe <thorpej@wasabisystems.com>
* config.gcc (ns32k-*-netbsd*): Set tm_file to * config.gcc (ns32k-*-netbsd*): Set tm_file to
......
...@@ -6897,11 +6897,7 @@ int ...@@ -6897,11 +6897,7 @@ int
following_call (insn) following_call (insn)
rtx insn; rtx insn;
{ {
/* We do not place jumps into call delay slots when optimizing for the if (! TARGET_JUMP_IN_DELAY)
PA8000 processor or when generating dwarf2 call frame information. */
if (pa_cpu >= PROCESSOR_8000
|| (! USING_SJLJ_EXCEPTIONS && flag_exceptions)
|| flag_unwind_tables)
return 0; return 0;
/* Find the previous real insn, skipping NOTEs. */ /* Find the previous real insn, skipping NOTEs. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment