summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
Diffstat (limited to 'lisc')
-rw-r--r--lisc/isel.c3
-rw-r--r--lisc/lisc.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/lisc/isel.c b/lisc/isel.c
index d47ed0f..78e2c9b 100644
--- a/lisc/isel.c
+++ b/lisc/isel.c
@@ -80,7 +80,8 @@ isel(Fn *fn)
 {
 	Blk *b;
 	Ins *i;
-	int t0, t, nins;
+	int t0, t;
+	uint nins;
 
 	t0 = fn->ntmp;
 	for (b=fn->start; b; b=b->link) {
diff --git a/lisc/lisc.h b/lisc/lisc.h
index bc22a41..5c9063a 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -142,7 +142,7 @@ struct Sym {
 		STmp,
 	} type;
 	char name[NString];
-	int ndef, nuse;
+	uint ndef, nuse;
 };
 
 struct Fn {