summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-15 16:02:25 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-15 16:34:16 -0500
commit95bd36c620363668d6c014c73b4173d4e46106e9 (patch)
tree54b7bdecb312637ecda2f8fa9fbc46f3477feab0
parentb2fa33c32d5dbf968be838036d21cfe1ca002ebf (diff)
downloadroux-95bd36c620363668d6c014c73b4173d4e46106e9.tar.gz
fix comments in emit
-rw-r--r--lisc/emit.c6
1 files 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" },