diff options
Diffstat (limited to 'src/lj_target_x86.h')
-rw-r--r-- | src/lj_target_x86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index fd2a32fe..34b247d4 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h | |||
@@ -43,10 +43,10 @@ enum { | |||
43 | /* These definitions must match with the *.dasc file(s): */ | 43 | /* These definitions must match with the *.dasc file(s): */ |
44 | RID_BASE = RID_EDX, /* Interpreter BASE. */ | 44 | RID_BASE = RID_EDX, /* Interpreter BASE. */ |
45 | #if LJ_64 && !LJ_ABI_WIN | 45 | #if LJ_64 && !LJ_ABI_WIN |
46 | RID_PC = RID_EBX, /* Interpreter PC. */ | 46 | RID_LPC = RID_EBX, /* Interpreter PC. */ |
47 | RID_DISPATCH = RID_R14D, /* Interpreter DISPATCH table. */ | 47 | RID_DISPATCH = RID_R14D, /* Interpreter DISPATCH table. */ |
48 | #else | 48 | #else |
49 | RID_PC = RID_ESI, /* Interpreter PC. */ | 49 | RID_LPC = RID_ESI, /* Interpreter PC. */ |
50 | RID_DISPATCH = RID_EBX, /* Interpreter DISPATCH table. */ | 50 | RID_DISPATCH = RID_EBX, /* Interpreter DISPATCH table. */ |
51 | #endif | 51 | #endif |
52 | 52 | ||