Browse Source

bump the size of the instruction buffer

Ori needs this.  It should not cost much more memory at runtime,
only a minimal amount of address space.
Quentin Carbonneaux 8 years ago
parent
commit
dc4cc49697
1 changed files with 1 additions and 1 deletions
  1. 1 1
      all.h

+ 1 - 1
all.h

@@ -33,7 +33,7 @@ typedef struct Target Target;
 enum {
 	NString = 32,
 	NPred   = 63,
-	NIns    = 8192,
+	NIns    = 1 << 20,
 	NAlign  = 3,
 	NField  = 32,
 	NBit    = CHAR_BIT * sizeof(bits),