diff options
author | Mike Pall <mike> | 2010-02-03 14:55:56 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2010-02-03 14:55:56 +0100 |
commit | 318e86c7eb53999783c0c4a3c6796d1a723dd024 (patch) | |
tree | 2f7521d190121fbf2fcbc8c15290fcd66434b45b /src/lj_jit.h | |
parent | c1c9abeab7f3716dda213c6048344e1bf4f58486 (diff) | |
download | luajit-318e86c7eb53999783c0c4a3c6796d1a723dd024.tar.gz luajit-318e86c7eb53999783c0c4a3c6796d1a723dd024.tar.bz2 luajit-318e86c7eb53999783c0c4a3c6796d1a723dd024.zip |
Clean up frame depth checks and loop detection.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index 35595cd5..1e029182 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -231,6 +231,7 @@ typedef struct jit_State { | |||
231 | int32_t loopunroll; /* Unroll counter for loop ops in side traces. */ | 231 | int32_t loopunroll; /* Unroll counter for loop ops in side traces. */ |
232 | int32_t tailcalled; /* Number of successive tailcalls. */ | 232 | int32_t tailcalled; /* Number of successive tailcalls. */ |
233 | int32_t framedepth; /* Current frame depth. */ | 233 | int32_t framedepth; /* Current frame depth. */ |
234 | int32_t retdepth; /* Return frame depth (count of RETF). */ | ||
234 | 235 | ||
235 | MRef knum; /* Pointer to chained array of KNUM constants. */ | 236 | MRef knum; /* Pointer to chained array of KNUM constants. */ |
236 | 237 | ||