summary refs log tree commit diff
path: root/lisc/isel.c
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-12 10:39:23 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-12 10:39:23 -0500
commit7b5e84a5d0338067389bd95761fa8f5a40fe871d (patch)
treed7074e0236345d454ce27716973730fb53b62c24 /lisc/isel.c
parentb498f24b8ff812e9703c7b4bc5dcaba9a3466364 (diff)
downloadroux-7b5e84a5d0338067389bd95761fa8f5a40fe871d.tar.gz
fix harmless typo in isel
Diffstat (limited to 'lisc/isel.c')
-rw-r--r--lisc/isel.c2
1 files changed, 1 insertions, 1 deletions
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);