diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-12 12:16:42 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-12 12:16:42 -0400 |
commit | 4a52182ed7906e7529c0ba5c06ac2d256b970409 (patch) | |
tree | 1c1919b32a2f334190488e173af9c995afa21916 /emit.c | |
parent | c416da5a70c4c7f43f44091b078251aa06be75d5 (diff) | |
download | roux-4a52182ed7906e7529c0ba5c06ac2d256b970409.tar.gz |
fix typo in emit
Diffstat (limited to 'emit.c')
-rw-r--r-- | emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emit.c b/emit.c index bbb89c3..3822da4 100644 --- a/emit.c +++ b/emit.c @@ -351,7 +351,7 @@ emitins(Ins i, Fn *fn, FILE *f) /* this linear search should really be a binary * search */ if (omap[o].op == NOp) - die("not match for %d(%d)", i.op, i.cls); + die("no match for %d(%d)", i.op, i.cls); if (omap[o].op == i.op) if (omap[o].cls == i.cls || (omap[o].cls == Ki && KBASE(i.cls) == 0) |