summaryrefslogtreecommitdiff
path: root/src/lj_ir.h
diff options
context:
space:
mode:
authorMike Pall <mike>2010-12-05 18:59:34 +0100
committerMike Pall <mike>2010-12-05 18:59:34 +0100
commit6a7605ec85a6e5f91fc539a9e5c18659d73f3530 (patch)
tree1d2a8db0e2f1e6dcca30a0bcbf2b91bf88154600 /src/lj_ir.h
parent26830d070df51c72819d1e5515ff5cce0f1132fa (diff)
downloadluajit-6a7605ec85a6e5f91fc539a9e5c18659d73f3530.tar.gz
luajit-6a7605ec85a6e5f91fc539a9e5c18659d73f3530.tar.bz2
luajit-6a7605ec85a6e5f91fc539a9e5c18659d73f3530.zip
Rename IRT_PTR to IRT_P32.
Diffstat (limited to 'src/lj_ir.h')
-rw-r--r--src/lj_ir.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lj_ir.h b/src/lj_ir.h
index f0c51bf9..123d87c8 100644
--- a/src/lj_ir.h
+++ b/src/lj_ir.h
@@ -243,7 +243,7 @@ typedef struct CCallInfo {
243 _(lj_str_fromnum, 2, FN, STR, CCI_L) \ 243 _(lj_str_fromnum, 2, FN, STR, CCI_L) \
244 _(lj_tab_new1, 2, FS, TAB, CCI_L) \ 244 _(lj_tab_new1, 2, FS, TAB, CCI_L) \
245 _(lj_tab_dup, 2, FS, TAB, CCI_L) \ 245 _(lj_tab_dup, 2, FS, TAB, CCI_L) \
246 _(lj_tab_newkey, 3, S, PTR, CCI_L) \ 246 _(lj_tab_newkey, 3, S, P32, CCI_L) \
247 _(lj_tab_len, 1, FL, INT, 0) \ 247 _(lj_tab_len, 1, FL, INT, 0) \
248 _(lj_gc_step_jit, 2, FS, NIL, CCI_L) \ 248 _(lj_gc_step_jit, 2, FS, NIL, CCI_L) \
249 _(lj_gc_barrieruv, 2, FS, NIL, 0) \ 249 _(lj_gc_barrieruv, 2, FS, NIL, 0) \
@@ -311,7 +311,7 @@ typedef enum {
311 IRT_LIGHTUD, 311 IRT_LIGHTUD,
312 /* GCobj types are from here ... */ 312 /* GCobj types are from here ... */
313 IRT_STR, 313 IRT_STR,
314 IRT_PTR, /* IRT_PTR never escapes the IR (map of LJ_TUPVAL). */ 314 IRT_P32, /* IRT_P32 never escapes the IR (map of LJ_TUPVAL). */
315 IRT_THREAD, 315 IRT_THREAD,
316 IRT_PROTO, 316 IRT_PROTO,
317 IRT_FUNC, 317 IRT_FUNC,