From 7b5e84a5d0338067389bd95761fa8f5a40fe871d Mon Sep 17 00:00:00 2001
From: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date: Fri, 12 Feb 2016 10:39:23 -0500
Subject: [PATCH] fix harmless typo in isel

---
 lisc/isel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/isel.c b/lisc/isel.c
index 0af4c9b..578eec7 100644
--- a/lisc/isel.c
+++ b/lisc/isel.c
@@ -57,7 +57,7 @@ iscmp(int op, int *k, int *c)
 	if (OCmpl <= op && op <= OCmpl1) {
 		*c = op - OCmpl;
 		*k = Kl;
-		return 1l;
+		return 1;
 	}
 	if (OCmps <= op && op <= OCmps1) {
 		*c = fcmptoi(op - OCmps);