diff options
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r-- | src/lj_ir.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h index 6495a780..33edf76c 100644 --- a/src/lj_ir.h +++ b/src/lj_ir.h | |||
@@ -111,7 +111,7 @@ | |||
111 | _(TNEW, AW, lit, lit) \ | 111 | _(TNEW, AW, lit, lit) \ |
112 | _(TDUP, AW, ref, ___) \ | 112 | _(TDUP, AW, ref, ___) \ |
113 | _(CNEW, AW, ref, ref) \ | 113 | _(CNEW, AW, ref, ref) \ |
114 | _(CNEWI, NW, ref, ref) /* CSE is ok, not marked as A. */ \ | 114 | _(CNEWP, NW, ref, ref) /* CSE is ok, not marked as A. */ \ |
115 | \ | 115 | \ |
116 | /* Write barriers. */ \ | 116 | /* Write barriers. */ \ |
117 | _(TBAR, S , ref, ___) \ | 117 | _(TBAR, S , ref, ___) \ |
@@ -188,9 +188,7 @@ IRFPMDEF(FPMENUM) | |||
188 | _(UDATA_UDTYPE, offsetof(GCudata, udtype)) \ | 188 | _(UDATA_UDTYPE, offsetof(GCudata, udtype)) \ |
189 | _(UDATA_FILE, sizeof(GCudata)) \ | 189 | _(UDATA_FILE, sizeof(GCudata)) \ |
190 | _(CDATA_TYPEID, offsetof(GCcdata, typeid)) \ | 190 | _(CDATA_TYPEID, offsetof(GCcdata, typeid)) \ |
191 | _(CDATA_INIT1, sizeof(GCcdata)) \ | 191 | _(CDATA_PTR, sizeof(GCcdata)) |
192 | _(CDATA_INIT2_4, sizeof(GCcdata)+4) \ | ||
193 | _(CDATA_INIT2_8, sizeof(GCcdata)+8) | ||
194 | 192 | ||
195 | typedef enum { | 193 | typedef enum { |
196 | #define FLENUM(name, ofs) IRFL_##name, | 194 | #define FLENUM(name, ofs) IRFL_##name, |