From 57fdb275ca9a48dd91b3d846781c9a39d535048f Mon Sep 17 00:00:00 2001 From: keie Date: Tue, 5 Feb 1985 15:26:47 +0000 Subject: [PATCH] Made a mix of a new cgg(with TEM_WSIZE) and the obsolete variable (T)EM_BSIZE feature. --HG-- branch : unlabeled-2.1.1 --- mach/m68k2/cg/mach.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mach/m68k2/cg/mach.c b/mach/m68k2/cg/mach.c index bff316602..0487fe2e0 100644 --- a/mach/m68k2/cg/mach.c +++ b/mach/m68k2/cg/mach.c @@ -27,7 +27,7 @@ con_part(sz,w) register sz; word w; { while (part_size % sz) part_size++; - if (part_size == EM_WSIZE) + if (part_size == TEM_WSIZE) part_flush(); if (sz == 1) { w &= 0xFF; @@ -104,7 +104,7 @@ struct regsav_t { int regnr; int nr_a_regs,nr_d_regs; -int EM_BSIZE; +int TEM_BSIZE; static long nlocals; prolog(n) @@ -116,7 +116,7 @@ i_regsave() regnr = 0; nr_a_regs = 0; nr_d_regs = 0; - EM_BSIZE = 0; + TEM_BSIZE = 0; } #define MOVEM_LIMIT 2 @@ -160,7 +160,7 @@ save() } /* Compute AB - LB */ - EM_BSIZE = 4 * (nr_d_regs + nr_a_regs) + 10; + TEM_BSIZE = 4 * (nr_d_regs + nr_a_regs) + 10; /* allocate space for local variables */ fprintf(codefile,"tst.b -%D(sp)\nlink\ta6,#-%D\n",nlocals+40,nlocals); @@ -170,7 +170,7 @@ save() if (p->rs_off >= 0) { fprintf(codefile,"move.%c %ld(a6),%s\n", (p->rs_size == 4 ? 'l' : 'w'), - p->rs_off + EM_BSIZE, + p->rs_off + TEM_BSIZE, p->rs_reg); } } -- 2.34.1