qbe

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

commit 610e03f6d07d341e6d2aaa6ce3811bb5d3451b44
parent dd6ed823f06f661c05fdae594ee0eebdcce530df
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Thu,  4 Feb 2016 14:37:28 -0500

fix indent in emit

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

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