diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-08-05 12:47:10 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:30 -0400 |
commit | 9c7b06d68f6a71ff43d1de60953658ca47bbde36 (patch) | |
tree | 822d93ac78d23aa3c8bedfd0d45ef54bed317b08 /lisc/emit.c | |
parent | 246a48ba94b92e6c1e02964d46269e0903b7a723 (diff) | |
download | roux-9c7b06d68f6a71ff43d1de60953658ca47bbde36.tar.gz |
quick fix for comparisons with constants
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 1025ace..1867097 100644 --- a/lisc/emit.c +++ b/lisc/emit.c @@ -68,6 +68,8 @@ static char *rbtoa[] = { static char *ctoa[NCmp] = { [Ceq] = "e", [Csle] = "le", + [Csgt] = "g", + [Cne] = "ne", }; static void |