diff options
| author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-12 10:39:23 -0500 |
|---|---|---|
| committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-12 10:39:23 -0500 |
| commit | 7b5e84a5d0338067389bd95761fa8f5a40fe871d (patch) | |
| tree | d7074e0236345d454ce27716973730fb53b62c24 | |
| parent | b498f24b8ff812e9703c7b4bc5dcaba9a3466364 (diff) | |
| download | roux-7b5e84a5d0338067389bd95761fa8f5a40fe871d.tar.gz | |
fix harmless typo in isel
| -rw-r--r-- | lisc/isel.c | 2 |
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); |
