aboutsummaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index 69a066ce..68cebbc2 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -231,9 +231,9 @@ typedef struct jit_State {
231 231
232 TraceState state; /* Trace compiler state. */ 232 TraceState state; /* Trace compiler state. */
233 233
234 uint64_t tailcalled; /* History of the number of successive tailcalls. */
235 int32_t instunroll; /* Unroll counter for instable loops. */ 234 int32_t instunroll; /* Unroll counter for instable loops. */
236 int32_t loopunroll; /* Unroll counter for loop ops in side traces. */ 235 int32_t loopunroll; /* Unroll counter for loop ops in side traces. */
236 int32_t tailcalled; /* Number of successive tailcalls. */
237 int32_t framedepth; /* Current frame depth. */ 237 int32_t framedepth; /* Current frame depth. */
238 int32_t retdepth; /* Return frame depth (count of RETF). */ 238 int32_t retdepth; /* Return frame depth (count of RETF). */
239 239