From 64a35f954d5e89ba27c5bc903091fffbf5ff68eb Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 5 Jun 1989 15:47:53 +0000 Subject: [PATCH] leave register messages with a count of 0 --- util/opt/reg.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/util/opt/reg.c b/util/opt/reg.c index 302273390..3bf31f98a 100644 --- a/util/opt/reg.c +++ b/util/opt/reg.c @@ -60,13 +60,11 @@ outregs() { for(rp=curpro.freg; rp != (reg_p) 0; rp = tp) { tp = rp->r_next; - if (rp->r_par[3] != 0) { - outinst(ps_mes); - outoff((offset)ms_reg); - for(i=0;i<4;i++) - outoff(rp->r_par[i]); - outinst(sp_cend); - } + outinst(ps_mes); + outoff((offset)ms_reg); + for(i=0;i<4;i++) + outoff(rp->r_par[i]); + outinst(sp_cend); oldreg(rp); } /* List of register messages is followed by an empty ms_reg -- 2.34.1