diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-03 16:45:51 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-02-03 16:45:51 -0500 |
commit | f72e1d4b0298dcbf9fd695a93d969ca269ad0f30 (patch) | |
tree | c7b93e9a977765884a7f3b5cd2e43960a4b84441 | |
parent | 470810f30795fa40efc7d251f2ad83ed892978e1 (diff) | |
download | roux-f72e1d4b0298dcbf9fd695a93d969ca269ad0f30.tar.gz |
fix call emission
-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 9bb08c4..b14a6d3 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: - emitf("callq %0", &i, fn, f); + emitf("callq %M0", &i, fn, f); break; case RTmp: emitf("callq *%L0", &i, fn, f); |