From 28fa229c37e0cd7dd7de74e476cace2b7cd1fdcc Mon Sep 17 00:00:00 2001 From: law Date: Thu, 28 Oct 1999 09:10:29 +0000 Subject: [PATCH] * sparc.h (ADJUST_COST): Fix thinko. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30232 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/config/sparc/sparc.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index beb3b97..7c34eb3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu Oct 28 03:08:38 1999 Matteo Frigo + + * sparc.h (ADJUST_COST): Fix thinko. + Thu Oct 28 02:44:03 1999 Glen Nakamura * cccp.c (rescan): Fixed obp pointer handling around call to diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 7134b27..589a129 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -2722,7 +2722,7 @@ do { \ /* Adjust the cost of dependencies. */ #define ADJUST_COST(INSN,LINK,DEP,COST) \ - sparc_adjust_cost(INSN, LINK, DEP, COST) + (COST) = sparc_adjust_cost(INSN, LINK, DEP, COST) #define MD_SCHED_INIT(DUMP, SCHED_VERBOSE) \ if (sparc_cpu == PROCESSOR_ULTRASPARC) \ -- 2.7.4