summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-01-04 04:29:16 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-01-04 04:29:16 -0500
commit9a837884c6a1bc1e69cc757603e6b1cdf8627524 (patch)
treeeebe774ed0375cfebc12adafe68c5091ee5f52f3
parent70f7e8687db2a13a671dee501090bf756db5a941 (diff)
downloadroux-9a837884c6a1bc1e69cc757603e6b1cdf8627524.tar.gz
force warning with XMM15 in rsave[]
-rw-r--r--lisc/isel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/isel.c b/lisc/isel.c
index 9fff5ad..4a62585 100644
--- a/lisc/isel.c
+++ b/lisc/isel.c
@@ -464,7 +464,7 @@ classify(Ins *i0, Ins *i1, AClass *ac, int op)
 int rsave[NRSave] = {
 	RDI, RSI, RDX, RCX, R8, R9, R10, R11, RAX,
 	XMM0, XMM1, XMM2, XMM3, XMM4, XMM5, XMM6, XMM7, XMM8,
-	XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, /* XMM15 */
+	XMM9, XMM10, XMM11, XMM12, XMM13, XMM14, XMM15
 };
 int rclob[NRClob] = {RBX, R12, R13, R14, R15};