diff options
Diffstat (limited to 'src/lj_iropt.h')
-rw-r--r-- | src/lj_iropt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lj_iropt.h b/src/lj_iropt.h index 43c414c1..db99c118 100644 --- a/src/lj_iropt.h +++ b/src/lj_iropt.h | |||
@@ -141,6 +141,12 @@ LJ_FUNC IRType lj_opt_narrow_forl(cTValue *forbase); | |||
141 | /* Optimization passes. */ | 141 | /* Optimization passes. */ |
142 | LJ_FUNC void lj_opt_dce(jit_State *J); | 142 | LJ_FUNC void lj_opt_dce(jit_State *J); |
143 | LJ_FUNC int lj_opt_loop(jit_State *J); | 143 | LJ_FUNC int lj_opt_loop(jit_State *J); |
144 | #if LJ_HASFFI && LJ_32 | ||
145 | LJ_FUNC void lj_opt_split(jit_State *J); | ||
146 | #else | ||
147 | #define lj_opt_split(J) UNUSED(J) | ||
148 | #endif | ||
149 | |||
144 | #endif | 150 | #endif |
145 | 151 | ||
146 | #endif | 152 | #endif |