From bba9cf47c9badfb0b41c63764415ba7a3fe46d2d Mon Sep 17 00:00:00 2001
From: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Mon, 20 Jul 2015 05:20:20 -0400
Subject: [PATCH] fix small type issues

---
 lisc/isel.c | 3 ++-
 lisc/lisc.h | 2 +-
 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 {