simplified a bit to make the resulting optimizer smaller; Added a

constant w2 that can be used in the patterns instead of 2*w
This commit is contained in:
ceriel
1989-02-02 11:41:31 +00:00
parent 9359e081db
commit f3c29355f6
9 changed files with 307 additions and 114 deletions

View File

@@ -29,6 +29,7 @@ static char *nextstr;
static char *laststr;
arith OO_WSIZE; /* wordlength */
arith OO_DWSIZE; /* 2*wordlength */
arith OO_PSIZE; /* pointer length */
#ifdef STATS
@@ -51,6 +52,7 @@ O_init(wsize,psize)
allocmem();
C_init(wsize,psize);
OO_WSIZE = wsize;
OO_DWSIZE = 2*wsize;
OO_PSIZE = psize;
}