summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lisc/isel.c3
-rw-r--r--lisc/parse.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/lisc/isel.c b/lisc/isel.c
index 78e2c9b..eff8d93 100644
--- a/lisc/isel.c
+++ b/lisc/isel.c
@@ -19,8 +19,7 @@
  *   ABI)
  */
 
-extern Ins insb[NIns]; /* shared work buffer */
-static Ins *curi;
+extern Ins insb[NIns], *curi; /* shared work buffer */
 
 static void
 emit(short op, Ref to, Ref arg0, Ref arg1)
diff --git a/lisc/parse.c b/lisc/parse.c
index 168da6d..4e43f84 100644
--- a/lisc/parse.c
+++ b/lisc/parse.c
@@ -9,7 +9,7 @@ enum {
 	NSym = 256,
 };
 
-Ins insb[NIns];
+Ins insb[NIns], *curi;
 
 OpDesc opdesc[OLast] = {
 	[OAdd] = { 2, 1, "add" },
@@ -62,7 +62,6 @@ static int lnum;
 static Sym sym[NSym];
 static int ntmp;
 static Phi **plink;
-static Ins *curi;
 static Blk *bmap[NBlk+1];
 static Blk *curb;
 static Blk **blink;