summaryrefslogtreecommitdiff
path: root/src/lj_ir.h
diff options
context:
space:
mode:
authorMike Pall <mike>2011-01-02 22:20:08 +0100
committerMike Pall <mike>2011-01-02 22:20:08 +0100
commit331b14873731a4377b7487a247a33dfc6fba1f0b (patch)
tree9792a00ed964464d9857ba9e303a14649e54d6d3 /src/lj_ir.h
parente66b5b6eeefa0cadfd80a859c71d41c2f9e076b8 (diff)
downloadluajit-331b14873731a4377b7487a247a33dfc6fba1f0b.tar.gz
luajit-331b14873731a4377b7487a247a33dfc6fba1f0b.tar.bz2
luajit-331b14873731a4377b7487a247a33dfc6fba1f0b.zip
Use cdata to pass IR_KINT64 to -jdump.
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r--src/lj_ir.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index 4cf412cf..7d1e6daf 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -553,6 +553,7 @@ typedef union IRIns {
553#define ir_kstr(ir) (gco2str(ir_kgc((ir)))) 553#define ir_kstr(ir) (gco2str(ir_kgc((ir))))
554#define ir_ktab(ir) (gco2tab(ir_kgc((ir)))) 554#define ir_ktab(ir) (gco2tab(ir_kgc((ir))))
555#define ir_kfunc(ir) (gco2func(ir_kgc((ir)))) 555#define ir_kfunc(ir) (gco2func(ir_kgc((ir))))
556#define ir_kcdata(ir) (gco2cd(ir_kgc((ir))))
556#define ir_knum(ir) check_exp((ir)->o == IR_KNUM, mref((ir)->ptr, cTValue)) 557#define ir_knum(ir) check_exp((ir)->o == IR_KNUM, mref((ir)->ptr, cTValue))
557#define ir_kint64(ir) check_exp((ir)->o == IR_KINT64, mref((ir)->ptr,cTValue)) 558#define ir_kint64(ir) check_exp((ir)->o == IR_KINT64, mref((ir)->ptr,cTValue))
558#define ir_k64(ir) \ 559#define ir_k64(ir) \