diff options
author | Mike Pall <mike> | 2010-08-03 22:09:12 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-08-03 22:09:12 +0200 |
commit | 33ef1fa52405f1417d90a289eb2bd00c367e6195 (patch) | |
tree | 3aa501f343e458f1b9d05a02895c755043c4113e /src/lj_asm.c | |
parent | a6b7952f7e095883d9a277f26b844ae1c9248999 (diff) | |
download | luajit-33ef1fa52405f1417d90a289eb2bd00c367e6195.tar.gz luajit-33ef1fa52405f1417d90a289eb2bd00c367e6195.tar.bz2 luajit-33ef1fa52405f1417d90a289eb2bd00c367e6195.zip |
Untangle some target dependencies.
Diffstat (limited to 'src/lj_asm.c')
-rw-r--r-- | src/lj_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_asm.c b/src/lj_asm.c index 56b39e32..7773abe1 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c | |||
@@ -950,7 +950,7 @@ static MCode *asm_exitstub_gen(ASMState *as, ExitNo group) | |||
950 | } | 950 | } |
951 | /* Push the high byte of the exitno for each exit stub group. */ | 951 | /* Push the high byte of the exitno for each exit stub group. */ |
952 | *mxp++ = XI_PUSHi8; *mxp++ = (MCode)((group*EXITSTUBS_PER_GROUP)>>8); | 952 | *mxp++ = XI_PUSHi8; *mxp++ = (MCode)((group*EXITSTUBS_PER_GROUP)>>8); |
953 | /* Store DISPATCH in ExitInfo->dispatch. Account for the two push ops. */ | 953 | /* Store DISPATCH at original stack slot 0. Account for the two push ops. */ |
954 | *mxp++ = XI_MOVmi; | 954 | *mxp++ = XI_MOVmi; |
955 | *mxp++ = MODRM(XM_OFS8, 0, RID_ESP); | 955 | *mxp++ = MODRM(XM_OFS8, 0, RID_ESP); |
956 | *mxp++ = MODRM(XM_SCALE1, RID_ESP, RID_ESP); | 956 | *mxp++ = MODRM(XM_SCALE1, RID_ESP, RID_ESP); |