From c76b5f436ac5bfc5eba094c739eae816e86611fb Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 12 Jun 1992 15:04:27 +0000 Subject: [PATCH] bug fix: an illegal 'inc' was generated --- mach/sparc/ce/cache.c.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/sparc/ce/cache.c.x b/mach/sparc/ce/cache.c.x index 859e5a0c6..bdf095fbe 100644 --- a/mach/sparc/ce/cache.c.x +++ b/mach/sparc/ce/cache.c.x @@ -1152,7 +1152,7 @@ enter("pop_nop"); "inc $V1, %l0"; } else { "set $V1, $reg_tmp"; - "inc %l0, $reg_tmp, %l0"; + "add %l0, $reg_tmp, %l0"; } } if (debug) { indent(); fprint(codefile, "\t\t! %dw cache:",j); dump_cache(codefile); } -- 2.34.1