diff options
author | Mike Pall <mike> | 2015-03-06 03:47:45 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2015-03-06 03:47:45 +0100 |
commit | 361827c8f986a73cdccfc98ad16fe9f33ed6fb25 (patch) | |
tree | 06b31d2ed5972c8d60e378d80a86b89992a4d2e0 /src/lj_target_ppc.h | |
parent | c821e0aded3973b0c43cddf55709cd3ad42a95d1 (diff) | |
download | luajit-361827c8f986a73cdccfc98ad16fe9f33ed6fb25.tar.gz luajit-361827c8f986a73cdccfc98ad16fe9f33ed6fb25.tar.bz2 luajit-361827c8f986a73cdccfc98ad16fe9f33ed6fb25.zip |
PPC64: Add build infrastructure.
Diffstat (limited to 'src/lj_target_ppc.h')
-rw-r--r-- | src/lj_target_ppc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_target_ppc.h b/src/lj_target_ppc.h index 2caeeb04..99867688 100644 --- a/src/lj_target_ppc.h +++ b/src/lj_target_ppc.h | |||
@@ -104,7 +104,7 @@ enum { | |||
104 | /* This definition must match with the *.dasc file(s). */ | 104 | /* This definition must match with the *.dasc file(s). */ |
105 | typedef struct { | 105 | typedef struct { |
106 | lua_Number fpr[RID_NUM_FPR]; /* Floating-point registers. */ | 106 | lua_Number fpr[RID_NUM_FPR]; /* Floating-point registers. */ |
107 | int32_t gpr[RID_NUM_GPR]; /* General-purpose registers. */ | 107 | intptr_t gpr[RID_NUM_GPR]; /* General-purpose registers. */ |
108 | int32_t spill[256]; /* Spill slots. */ | 108 | int32_t spill[256]; /* Spill slots. */ |
109 | } ExitState; | 109 | } ExitState; |
110 | 110 | ||