diff options
author | Mike Pall <mike> | 2010-02-27 19:53:14 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-02-27 20:18:11 +0100 |
commit | ec78d3177e1b24c24a89f0e83c19eb3e3e0f8023 (patch) | |
tree | 81d6af7daf9c7fa3e973cc3d8d7861a09880b05c /src/lj_jit.h | |
parent | 52b7651327b2aec4f12ae47f3ce5b56b1fb55996 (diff) | |
download | luajit-ec78d3177e1b24c24a89f0e83c19eb3e3e0f8023.tar.gz luajit-ec78d3177e1b24c24a89f0e83c19eb3e3e0f8023.tar.bz2 luajit-ec78d3177e1b24c24a89f0e83c19eb3e3e0f8023.zip |
Correctly align and free allocated machine code areas.
Bump default mcode area size to 64K for x64.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index ff3492bf..69156218 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -53,7 +53,7 @@ | |||
53 | #define JIT_F_OPT_3 (JIT_F_OPT_2|JIT_F_OPT_FWD|JIT_F_OPT_DSE|JIT_F_OPT_FUSE) | 53 | #define JIT_F_OPT_3 (JIT_F_OPT_2|JIT_F_OPT_FWD|JIT_F_OPT_DSE|JIT_F_OPT_FUSE) |
54 | #define JIT_F_OPT_DEFAULT JIT_F_OPT_3 | 54 | #define JIT_F_OPT_DEFAULT JIT_F_OPT_3 |
55 | 55 | ||
56 | #ifdef LUA_USE_WIN | 56 | #if defined(LUA_USE_WIN) || LJ_64 |
57 | /* See: http://blogs.msdn.com/oldnewthing/archive/2003/10/08/55239.aspx */ | 57 | /* See: http://blogs.msdn.com/oldnewthing/archive/2003/10/08/55239.aspx */ |
58 | #define JIT_P_sizemcode_DEFAULT 64 | 58 | #define JIT_P_sizemcode_DEFAULT 64 |
59 | #else | 59 | #else |