diff options
author | Mike Pall <mike> | 2017-06-07 19:36:46 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2017-06-07 19:36:46 +0200 |
commit | c7c3c4da432ddb543d4b0a9abbb245f11b26afd0 (patch) | |
tree | d153382bd0121bb289984d4270bd8f8cc9926144 /src/lj_mcode.c | |
parent | 7381b620358c2561e8690149f1d25828fdad6675 (diff) | |
download | luajit-c7c3c4da432ddb543d4b0a9abbb245f11b26afd0.tar.gz luajit-c7c3c4da432ddb543d4b0a9abbb245f11b26afd0.tar.bz2 luajit-c7c3c4da432ddb543d4b0a9abbb245f11b26afd0.zip |
MIPS: Fix handling of spare long-range jump slots.
Contributed by Djordje Kovacevic and Stefan Pejic.
Diffstat (limited to 'src/lj_mcode.c')
-rw-r--r-- | src/lj_mcode.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/lj_mcode.c b/src/lj_mcode.c index f0a1f699..5ea89f66 100644 --- a/src/lj_mcode.c +++ b/src/lj_mcode.c | |||
@@ -272,12 +272,6 @@ static void *mcode_alloc(jit_State *J, size_t sz) | |||
272 | 272 | ||
273 | /* -- MCode area management ----------------------------------------------- */ | 273 | /* -- MCode area management ----------------------------------------------- */ |
274 | 274 | ||
275 | /* Linked list of MCode areas. */ | ||
276 | typedef struct MCLink { | ||
277 | MCode *next; /* Next area. */ | ||
278 | size_t size; /* Size of current area. */ | ||
279 | } MCLink; | ||
280 | |||
281 | /* Allocate a new MCode area. */ | 275 | /* Allocate a new MCode area. */ |
282 | static void mcode_allocarea(jit_State *J) | 276 | static void mcode_allocarea(jit_State *J) |
283 | { | 277 | { |