diff options
author | Quentin Carbonneaux <quentin@c9x.me> | 2017-04-10 09:16:51 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2017-04-10 09:20:39 -0400 |
commit | dc4cc4969749940f55f36814b95d70c6c1da4d15 (patch) | |
tree | 71e30d9d291a631aa5e03efdad1bea8eb515f207 /all.h | |
parent | 19801b9253140443f7c04325dbf67581092b1a99 (diff) | |
download | roux-dc4cc4969749940f55f36814b95d70c6c1da4d15.tar.gz |
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.
Diffstat (limited to 'all.h')
-rw-r--r-- | all.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/all.h b/all.h index e31e2aa..f24d099 100644 --- a/all.h +++ b/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), |