From 1150aa7087ef10eaceb12009c4177c4056997e8b Mon Sep 17 00:00:00 2001 From: Torbjorn Granlund Date: Tue, 2 Mar 1993 19:21:13 +0000 Subject: [PATCH] (ADJUST_COST): Add new definition. From-SVN: r3596 --- gcc/config/pa/pa.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 6a9e504..8431f3a 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1404,6 +1404,11 @@ while (0) case PLUS: /* this includes shNadd insns */ \ return COSTS_N_INSNS (1) + 2; +/* Adjust the cost of dependencies. */ + +#define ADJUST_COST(INSN,LINK,DEP,COST) \ + (COST) = pa_adjust_cost (INSN, LINK, DEP, COST) + /* Conditional branches with empty delay slots have a length of two. */ #define ADJUST_INSN_LENGTH(INSN, LENGTH) \ if (GET_CODE (INSN) == CALL_INSN \ -- 2.7.4