qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 706d6beca6218caf76f0107d15e79a8f3af1646a
parent 9de57265ce8453de0f773c48550ca05460844dd1
Author: Michael Forney <mforney@mforney.org>
Date:   Sun, 19 Apr 2020 16:31:54 -0700

Move NPred in parse.c and decrease it

This now only limits the number of arguments when parsing the input SSA,
which is usually a small fixed size (depending on the frontend).

Diffstat:
Mall.h | 1-
Mparse.c | 2++
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/all.h b/all.h @@ -32,7 +32,6 @@ typedef struct Target Target; enum { NString = 64, - NPred = 127, NIns = 1 << 20, NAlign = 3, NField = 32, diff --git a/parse.c b/parse.c @@ -102,6 +102,8 @@ static char *kwmap[Ntok] = { }; enum { + NPred = 63, + TMask = 16383, /* for temps hash */ BMask = 8191, /* for blocks hash */