summaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2012-07-11 16:45:15 +0200
committerMike Pall <mike>2012-07-11 16:45:15 +0200
commit24fa85760cb29c68ff726c97c1ab67a3c0e1bd68 (patch)
treec5942f025653b49c92facc46c1c25771742a55c0 /src/lj_jit.h
parent79ecb231ce8079e8801f15307cf485efe7ee1255 (diff)
downloadluajit-24fa85760cb29c68ff726c97c1ab67a3c0e1bd68.tar.gz
luajit-24fa85760cb29c68ff726c97c1ab67a3c0e1bd68.tar.bz2
luajit-24fa85760cb29c68ff726c97c1ab67a3c0e1bd68.zip
Use an explicit flag to signal SINK tags for a trace.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index 1ec54fe7..43a99392 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -233,7 +233,8 @@ typedef struct GCtrace {
233 TraceNo1 root; /* Root trace of side trace (or 0 for root traces). */ 233 TraceNo1 root; /* Root trace of side trace (or 0 for root traces). */
234 TraceNo1 nextroot; /* Next root trace for same prototype. */ 234 TraceNo1 nextroot; /* Next root trace for same prototype. */
235 TraceNo1 nextside; /* Next side trace of same root trace. */ 235 TraceNo1 nextside; /* Next side trace of same root trace. */
236 uint16_t unused2; 236 uint8_t sinktags; /* Trace has SINK tags. */
237 uint8_t unused1;
237#ifdef LUAJIT_USE_GDBJIT 238#ifdef LUAJIT_USE_GDBJIT
238 void *gdbjit_entry; /* GDB JIT entry. */ 239 void *gdbjit_entry; /* GDB JIT entry. */
239#endif 240#endif