diff options
author | Mike Pall <mike> | 2012-05-07 23:16:19 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2012-05-07 23:16:19 +0200 |
commit | 0d824b7d1417dbb89468d2b6093c2fad127fcc06 (patch) | |
tree | c0817b217d91491e05c80422ff936460331fa8f2 /src/lj_target_x86.h | |
parent | afc17b3c1aafbd056c2bbb10ef937ebc10de07ee (diff) | |
download | luajit-0d824b7d1417dbb89468d2b6093c2fad127fcc06.tar.gz luajit-0d824b7d1417dbb89468d2b6093c2fad127fcc06.tar.bz2 luajit-0d824b7d1417dbb89468d2b6093c2fad127fcc06.zip |
Fix PHI stack slot syncing.
Diffstat (limited to 'src/lj_target_x86.h')
-rw-r--r-- | src/lj_target_x86.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index 3de408cc..cc15490b 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h | |||
@@ -139,6 +139,8 @@ enum { | |||
139 | #define SPS_FIRST 2 | 139 | #define SPS_FIRST 2 |
140 | #endif | 140 | #endif |
141 | 141 | ||
142 | #define SPOFS_TMP 0 | ||
143 | |||
142 | #define sps_scale(slot) (4 * (int32_t)(slot)) | 144 | #define sps_scale(slot) (4 * (int32_t)(slot)) |
143 | #define sps_align(slot) (((slot) - SPS_FIXED + 3) & ~3) | 145 | #define sps_align(slot) (((slot) - SPS_FIXED + 3) & ~3) |
144 | 146 | ||