diff options
author | Richard Henderson <rth@redhat.com> | 2002-02-28 10:32:12 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-02-28 10:32:12 -0800 |
commit | 89076bb3656b393a738933a79ddfde1161b3485a (patch) | |
tree | a5565c15b0b052513a333444454a04a0102ff0ab /gcc/sched-int.h | |
parent | e3aaacf47148d9853760c4adec1f93e41afc3bdb (diff) | |
download | gcc-89076bb3656b393a738933a79ddfde1161b3485a.zip gcc-89076bb3656b393a738933a79ddfde1161b3485a.tar.gz gcc-89076bb3656b393a738933a79ddfde1161b3485a.tar.bz2 |
haifa-sched.c (sched_emit_insn): New.
* haifa-sched.c (sched_emit_insn): New.
(schedule_block): Use last_scheduled_insn to track last insn.
* sched-int.h (sched_emit_insn): Prototype.
* config/ia64/ia64.c (last_issued): Remove.
(ia64_variable_issue): Don't set it.
(nop_cycles_until): Use sched_emit_insn.
From-SVN: r50153
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h index 47910a0..f5a8808 100644 --- a/gcc/sched-int.h +++ b/gcc/sched-int.h @@ -294,6 +294,7 @@ extern void rm_other_notes PARAMS ((rtx, rtx)); extern int insn_issue_delay PARAMS ((rtx)); extern int set_priorities PARAMS ((rtx, rtx)); +extern rtx sched_emit_insn PARAMS ((rtx)); extern void schedule_block PARAMS ((int, int)); extern void sched_init PARAMS ((FILE *)); extern void sched_finish PARAMS ((void)); |