diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-04 14:37:28 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-04 14:37:28 -0500 |
commit | 610e03f6d07d341e6d2aaa6ce3811bb5d3451b44 (patch) | |
tree | e38c0d2f152a485d1954e669df9d734a522f2b2e /lisc/emit.c | |
parent | dd6ed823f06f661c05fdae594ee0eebdcce530df (diff) | |
download | roux-610e03f6d07d341e6d2aaa6ce3811bb5d3451b44.tar.gz |
fix indent in emit
Diffstat (limited to 'lisc/emit.c')
-rw-r--r-- | lisc/emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/emit.c b/lisc/emit.c index a7331d1..ecc6b36 100644 --- a/lisc/emit.c +++ b/lisc/emit.c @@ -385,7 +385,7 @@ emitins(Ins i, Fn *fn, FILE *f) default: diag("emit: invalid call instruction"); case RCon: - fprintf(f, "callq "); + fprintf(f, "\tcallq "); emitcon(&fn->con[i.arg[0].val], f); fprintf(f, "\n"); break; |