qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 7b5e84a5d0338067389bd95761fa8f5a40fe871d
parent b498f24b8ff812e9703c7b4bc5dcaba9a3466364
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Fri, 12 Feb 2016 10:39:23 -0500

fix harmless typo in isel

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

diff --git 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);