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).
This commit is contained in:
parent
9de57265ce
commit
706d6beca6
2 changed files with 2 additions and 1 deletions
1
all.h
1
all.h
|
@ -32,7 +32,6 @@ typedef struct Target Target;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
NString = 64,
|
NString = 64,
|
||||||
NPred = 127,
|
|
||||||
NIns = 1 << 20,
|
NIns = 1 << 20,
|
||||||
NAlign = 3,
|
NAlign = 3,
|
||||||
NField = 32,
|
NField = 32,
|
||||||
|
|
2
parse.c
2
parse.c
|
@ -102,6 +102,8 @@ static char *kwmap[Ntok] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
NPred = 63,
|
||||||
|
|
||||||
TMask = 16383, /* for temps hash */
|
TMask = 16383, /* for temps hash */
|
||||||
BMask = 8191, /* for blocks hash */
|
BMask = 8191, /* for blocks hash */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue