From d493ffcfded751968cc9b23cfe6168f60bd4d3b2 Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 20 Feb 1987 17:35:08 +0000 Subject: [PATCH] bug fix --- mach/proto/ncg/reg.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mach/proto/ncg/reg.c b/mach/proto/ncg/reg.c index 9f645fbec..b71d06d43 100644 --- a/mach/proto/ncg/reg.c +++ b/mach/proto/ncg/reg.c @@ -73,17 +73,21 @@ erasereg(regno) { register struct reginfo *rp; register int i; +#if MAXMEMBERS==0 rp = &machregs[regno]; rp->r_contents.t_token = 0; for (i=0;ir_contents.t_att[i].aw = 0; -#if MAXMEMBERS==0 awayreg(regno); #else for (rp=machregs+1;rpr_clash[regno>>4]&(1<<(regno&017))) + if (rp->r_clash[regno>>4]&(1<<(regno&017))) { + rp->r_contents.t_token = 0; + for (i=0;ir_contents.t_att[i].aw = 0; awayreg(rp-machregs); + } #endif } -- 2.34.1