diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-28 19:23:37 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-28 19:23:37 +0000 |
commit | 1b2c37673afe4cb63dfc0c949ec2ca82b3185761 (patch) | |
tree | b25371e256df7f00a9e767db5ed74bc6554d9cef | |
parent | 79771cc412e68e6d5234d20f81731402453e84ad (diff) | |
download | gcc-1b2c37673afe4cb63dfc0c949ec2ca82b3185761.zip gcc-1b2c37673afe4cb63dfc0c949ec2ca82b3185761.tar.gz gcc-1b2c37673afe4cb63dfc0c949ec2ca82b3185761.tar.bz2 |
tm.texi (IS_COSTLY_DEPENDENCE): Change to TARGET_SCHED_IS_COSTLY_DEPENDENCE.
* doc/tm.texi (IS_COSTLY_DEPENDENCE): Change to
TARGET_SCHED_IS_COSTLY_DEPENDENCE.
From-SVN: r78620
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6acbafb..21e6db0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-02-28 Kazu Hirata <kazu@cs.umass.edu> + + * doc/tm.texi (IS_COSTLY_DEPENDENCE): Change to + TARGET_SCHED_IS_COSTLY_DEPENDENCE. + 2004-02-28 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> PR optimization/14229 diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 9bdff46..2018ca2 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -5683,7 +5683,7 @@ zero. The hook should return @code{NULL} if there are no more nop insns with indexes greater than given index. @end deftypefn -@deftypefn {Target Hook} bool IS_COSTLY_DEPENDENCE (rtx @var{insn1}, rtx @var{insn2}, rtx @var{dep_link}, int @var{dep_cost}, int @var{distance}) +@deftypefn {Target Hook} bool TARGET_SCHED_IS_COSTLY_DEPENDENCE (rtx @var{insn1}, rtx @var{insn2}, rtx @var{dep_link}, int @var{dep_cost}, int @var{distance}) This hook is used to define which dependences are considered costly by the target, so costly that it is not advisable to schedule the insns that are involved in the dependence too close to one another. The parameters |