summary refs log tree commit diff
path: root/all.h
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin@c9x.me>2017-04-10 09:16:51 -0400
committerQuentin Carbonneaux <quentin@c9x.me>2017-04-10 09:20:39 -0400
commitdc4cc4969749940f55f36814b95d70c6c1da4d15 (patch)
tree71e30d9d291a631aa5e03efdad1bea8eb515f207 /all.h
parent19801b9253140443f7c04325dbf67581092b1a99 (diff)
downloadroux-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.h2
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),