summary refs log tree commit diff
path: root/lisc
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-15 15:34:34 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-02-15 16:34:16 -0500
commit0debea30d462286b921c34ed087dafa1033d1864 (patch)
treea6a19c71ca3b031c3e96d96c44867495cc91df91 /lisc
parent5900eb7b0b0125fa749133e3efc0d5c962d0beac (diff)
downloadroux-0debea30d462286b921c34ed087dafa1033d1864.tar.gz
completely hide xmm15
Diffstat (limited to 'lisc')
-rw-r--r--lisc/lisc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index e857fcf..2762eb7 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -64,9 +64,9 @@ enum Reg {
 	Tmp0, /* first non-reg temporary */
 
 	NIReg = R12 - RAX + 1,
-	NFReg = XMM15 - XMM0 + 1,
+	NFReg = XMM14 - XMM0 + 1,
 	NISave = 9,
-	NFSave = 15,
+	NFSave = NFReg,
 	NRSave = NISave + NFSave,
 	NRClob = 5,
 };