diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-06 13:08:31 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:30 -0400 |
commit | 2482f4dbbb8a8fdc1a1bc398d5b8ca6f5af1fbd6 (patch) | |
tree | 623f29033d5fee4b948fa19de4013d6a20096cc2 /lisc/emit.c | |
parent | e5983ba1a2174fe7fd004692a427aae5bfc0dc4c (diff) | |
download | roux-2482f4dbbb8a8fdc1a1bc398d5b8ca6f5af1fbd6.tar.gz |
fix two bugs in isel
Diffstat (limited to 'lisc/emit.c')
-rw-r--r-- | lisc/emit.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisc/emit.c b/lisc/emit.c index a1a70c4..665a418 100644 --- a/lisc/emit.c +++ b/lisc/emit.c @@ -68,7 +68,9 @@ static char *rbtoa[] = { static char *ctoa[NCmp] = { [Ceq] = "e", [Csle] = "le", + [Cslt] = "l", [Csgt] = "g", + [Csge] = "ge", [Cne] = "ne", }; |