diff options
author | Torbjorn Granlund <tege@gnu.org> | 1994-02-12 01:07:26 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1994-02-12 01:07:26 +0000 |
commit | 2d4ffae31a0b2f7842d2388416766c2eb8a1701d (patch) | |
tree | 236d923dbe144adf4327a59d4de205f5d4aad641 /gcc | |
parent | a251ffd0ced940b9121ef658981e16640863836d (diff) | |
download | gcc-2d4ffae31a0b2f7842d2388416766c2eb8a1701d.zip gcc-2d4ffae31a0b2f7842d2388416766c2eb8a1701d.tar.gz gcc-2d4ffae31a0b2f7842d2388416766c2eb8a1701d.tar.bz2 |
(ADJUST_COST): Call ppc_adjust_cost.
From-SVN: r6536
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index b84947d..b7fac82 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -452,8 +452,7 @@ extern char *rs6000_cpu_string; a cost, but it is probably not worthwhile to track it. */ #define ADJUST_COST(INSN,LINK,DEP_INSN,COST) \ - if (REG_NOTE_KIND (LINK) != 0) \ - (COST) = 0; /* Anti or output dependence. */ + (COST) = ppc_adjust_cost (INSN,LINK,DEP_INSN,COST) /* Define this macro to change register usage conditional on target flags. Set MQ register fixed (already call_used) if not POWER architecture |