summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-08-29 11:45:36 +0900
committerYukihiro Matsumoto <[email protected]>2012-08-29 11:45:36 +0900
commit950204bc4d419fc3b2a0842eccf1d253735e7839 (patch)
tree61850a6bfabfaf237200054918f35d64a5a1bbb5 /include
parent4848c1f0c76872d78b1c86066e5da3c71f759630 (diff)
downloadmruby-950204bc4d419fc3b2a0842eccf1d253735e7839.tar.gz
mruby-950204bc4d419fc3b2a0842eccf1d253735e7839.zip
remove flags from irep
Diffstat (limited to 'include')
-rw-r--r--include/mruby/irep.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/mruby/irep.h b/include/mruby/irep.h
index af3346c0a..720301648 100644
--- a/include/mruby/irep.h
+++ b/include/mruby/irep.h
@@ -14,7 +14,6 @@ extern "C" {
typedef struct mrb_irep {
int idx;
- int flags;
int nlocals;
int nregs;
@@ -25,9 +24,6 @@ typedef struct mrb_irep {
int ilen, plen, slen;
} mrb_irep;
-#define MRB_IREP_NOFREE 3
-#define MRB_ISEQ_NOFREE 1
-
void mrb_add_irep(mrb_state *mrb, int n);
#if defined(__cplusplus)