From 85287081c4a25785dec1ec48c488a5879b3c37ac Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 2 Jan 2024 11:09:18 +0100 Subject: dbgloc: add column argument dbgloc line [col] This is implemented in a backwards-compatible manner. --- amd64/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'amd64') diff --git a/amd64/emit.c b/amd64/emit.c index 297cc76..51d1a5c 100644 --- a/amd64/emit.c +++ b/amd64/emit.c @@ -548,7 +548,7 @@ emitins(Ins i, Fn *fn, FILE *f) emitcopy(i.arg[1], TMP(XMM0+15), i.cls, fn, f); break; case Odbgloc: - emitdbgloc(i.arg[0].val, f); + emitdbgloc(i.arg[0].val, i.arg[1].val, f); break; } } -- cgit 1.4.1