From 156a10737edaa6845a968408b1ac630523d86237 Mon Sep 17 00:00:00 2001 From: David Given Date: Tue, 31 Jan 2017 22:58:13 +0100 Subject: [PATCH] Render vreg movelists properly. --- mach/proto/mcg/hop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mach/proto/mcg/hop.c b/mach/proto/mcg/hop.c index b14e09345..0c0f88b77 100644 --- a/mach/proto/mcg/hop.c +++ b/mach/proto/mcg/hop.c @@ -364,8 +364,8 @@ static void appendheader(struct hop* hop) appendf(" VREGS:"); for (i=0; ivregusage.count; i++) { - struct vreg* src = hop->vregusage.item[i].left; - struct vreg* dest = hop->vregusage.item[i].right; + struct vreg* src = actual(hop->vregusage.item[i].left); + struct vreg* dest = actual(hop->vregusage.item[i].right); appendf(" "); if (src) -- 2.34.1