summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index f49aa6f..e3ea528 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -74,8 +74,7 @@ enum {
 struct Ins {
 	short op;
 	Ref to;
-	Ref l;
-	Ref r;
+	Ref arg[2];
 };
 
 struct Phi {
@@ -111,8 +110,7 @@ struct Sym {
 		STmp,
 	} type;
 	char name[NString];
-	Blk *blk;
-	int pos;
+	int ndef, nuse;
 };
 
 struct Fn {