summaryrefslogtreecommitdiff
path: root/src/lj_target_x86.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lj_target_x86.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h
index 2ccea549..cb1892d5 100644
--- a/src/lj_target_x86.h
+++ b/src/lj_target_x86.h
@@ -116,7 +116,7 @@ enum {
116/* This definition must match with the *.dasc file(s). */ 116/* This definition must match with the *.dasc file(s). */
117typedef struct { 117typedef struct {
118 lua_Number fpr[RID_NUM_FPR]; /* Floating-point registers. */ 118 lua_Number fpr[RID_NUM_FPR]; /* Floating-point registers. */
119 int32_t gpr[RID_NUM_GPR]; /* General-purpose registers. */ 119 intptr_t gpr[RID_NUM_GPR]; /* General-purpose registers. */
120 int32_t spill[256]; /* Spill slots. */ 120 int32_t spill[256]; /* Spill slots. */
121} ExitState; 121} ExitState;
122 122