diff options
author | Mike Pall <mike> | 2011-05-17 21:26:00 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-05-17 21:26:00 +0200 |
commit | 3a942d6ceaf409874906408edc3e47de20157198 (patch) | |
tree | a3178dad2c89fa66adf4f8b3fc4033fb10f39c1c /src/lj_target_x86.h | |
parent | 3168d9aa5983c2dbdc4c8a26a9e0a4b23fb2d178 (diff) | |
download | luajit-3a942d6ceaf409874906408edc3e47de20157198.tar.gz luajit-3a942d6ceaf409874906408edc3e47de20157198.tar.bz2 luajit-3a942d6ceaf409874906408edc3e47de20157198.zip |
Portability cleanups for assembler backend.
Diffstat (limited to '')
-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 | ||