From 95bd36c620363668d6c014c73b4173d4e46106e9 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Mon, 15 Feb 2016 16:02:25 -0500 Subject: [PATCH] fix comments in emit --- lisc/emit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisc/emit.c b/lisc/emit.c index bdafde4..e081565 100644 --- a/lisc/emit.c +++ b/lisc/emit.c @@ -62,8 +62,8 @@ static struct { { OLoaduh, Ki, "movzw%k %M0, %=" }, { OLoadsb, Ki, "movsb%k %M0, %=" }, { OLoadub, Ki, "movzb%k %M0, %=" }, - { OLoads, Ks, "movss %M0, %=" }, /* fixme, Kf */ - { OLoadd, Kd, "movsd %M0, %=" }, + { OLoads, Ks, "movss %M0, %S=" }, + { OLoadd, Kd, "movsd %M0, %D=" }, { OExtsw, Kl, "movslq %W0, %L=" }, { OExtuw, Kl, "movl %W0, %W=" }, { OExtsh, Ki, "movsw%k %H0, %=" }, @@ -76,7 +76,7 @@ static struct { { OSign, Kw, "cltd" }, { OXPush, Ki, "push%k %0" }, { OXDiv, Ki, "idiv%k %0" }, - { OXCmp, Ks, "comiss %S0, %S1" }, + { OXCmp, Ks, "comiss %S0, %S1" }, /* fixme, Kf */ { OXCmp, Kd, "comisd %D0, %D1" }, { OXCmp, Ki, "cmp%k %0, %1" }, { OXTest, Ki, "test%k %0, %1" },