Selaa lähdekoodia

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).
Michael Forney 5 vuotta sitten
vanhempi
sitoutus
706d6beca6
2 muutettua tiedostoa jossa 2 lisäystä ja 1 poistoa
  1. 0 1
      all.h
  2. 2 0
      parse.c

+ 0 - 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 - 0
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 */