From dc4cc4969749940f55f36814b95d70c6c1da4d15 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Mon, 10 Apr 2017 09:16:51 -0400 Subject: [PATCH] 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. --- all.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),