From aef050fa9eafb83241f56e6841cd5e3878762131 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 3 Apr 1987 15:38:52 +0000 Subject: [PATCH] Seemed to prefer reg_any registers, which caused addresses of procedures to end up in data registers on the m68020. This is temporarily fixed, but actually, the descriptor files could be somewhat more general. --- util/ego/ra/ra_profits.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ego/ra/ra_profits.c b/util/ego/ra/ra_profits.c index 2ca6d361..1d0717c1 100644 --- a/util/ego/ra/ra_profits.c +++ b/util/ego/ra/ra_profits.c @@ -229,7 +229,7 @@ compute_profits(alloclist,time_opt) } t = cnt * time - dyn_inits(alloc->al_inits) * otime; sc = (time_opt ? t : s); - if (sc >= maxsc) { + if (sc > maxsc) { maxsc = sc; alloc->al_regtype = rtyp; alloc->al_profits = sc;