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.
This commit is contained in:
parent
19801b9253
commit
dc4cc49697
1 changed files with 1 additions and 1 deletions
2
all.h
2
all.h
|
@ -33,7 +33,7 @@ typedef struct Target Target;
|
||||||
enum {
|
enum {
|
||||||
NString = 32,
|
NString = 32,
|
||||||
NPred = 63,
|
NPred = 63,
|
||||||
NIns = 8192,
|
NIns = 1 << 20,
|
||||||
NAlign = 3,
|
NAlign = 3,
|
||||||
NField = 32,
|
NField = 32,
|
||||||
NBit = CHAR_BIT * sizeof(bits),
|
NBit = CHAR_BIT * sizeof(bits),
|
||||||
|
|
Loading…
Add table
Reference in a new issue