qbe

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

commit f72e1d4b0298dcbf9fd695a93d969ca269ad0f30
parent 470810f30795fa40efc7d251f2ad83ed892978e1
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Wed,  3 Feb 2016 16:45:51 -0500

fix call emission

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: - emitf("callq %0", &i, fn, f); + emitf("callq %M0", &i, fn, f); break; case RTmp: emitf("callq *%L0", &i, fn, f);