diff options
author | Mike Pall <mike> | 2011-10-22 01:35:57 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-10-22 01:35:57 +0200 |
commit | ff7f7a7180d25da9d425671a48867b50bb7e7ac2 (patch) | |
tree | 61cf1f88db777d2485c125c06d752fe61d6c6d3f /src/lj_target_x86.h | |
parent | e80478c44b7e4bf32a509c480edb39bd39ede51b (diff) | |
download | luajit-ff7f7a7180d25da9d425671a48867b50bb7e7ac2.tar.gz luajit-ff7f7a7180d25da9d425671a48867b50bb7e7ac2.tar.bz2 luajit-ff7f7a7180d25da9d425671a48867b50bb7e7ac2.zip |
Cleanup various endianess issues in assembler backend.
Diffstat (limited to '')
-rw-r--r-- | src/lj_target_x86.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_target_x86.h b/src/lj_target_x86.h index 34b247d4..c4445ba4 100644 --- a/src/lj_target_x86.h +++ b/src/lj_target_x86.h | |||
@@ -37,6 +37,7 @@ enum { | |||
37 | #if LJ_64 | 37 | #if LJ_64 |
38 | RID_FPRET = RID_XMM0, | 38 | RID_FPRET = RID_XMM0, |
39 | #else | 39 | #else |
40 | RID_RETLO = RID_EAX, | ||
40 | RID_RETHI = RID_EDX, | 41 | RID_RETHI = RID_EDX, |
41 | #endif | 42 | #endif |
42 | 43 | ||