From: ceriel Date: Tue, 1 Sep 1987 10:41:35 +0000 (+0000) Subject: dont count when USE_TMP is not defined X-Git-Tag: release-5-5~3858 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7e2c3130b05d311ba939ffd9c022b1b8fc436b45;p=ack.git dont count when USE_TMP is not defined --- diff --git a/lang/cem/cemcom/util.c b/lang/cem/cemcom/util.c index 0c044087f..2702ba0f9 100644 --- a/lang/cem/cemcom/util.c +++ b/lang/cem/cemcom/util.c @@ -178,7 +178,9 @@ LoadLocal(off, sz) { register struct localvar *p = find_reg(off); +#ifdef USE_TMP if (p) p->t_count++; +#endif if (sz == word_size) C_lol(off); else if (sz == dword_size) C_ldl(off); else { @@ -193,7 +195,9 @@ StoreLocal(off, sz) { register struct localvar *p = find_reg(off); +#ifdef USE_TMP if (p) p->t_count++; +#endif if (sz == word_size) C_stl(off); else if (sz == dword_size) C_sdl(off); else {