summaryrefslogtreecommitdiffhomepage
path: root/src/irep.h
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-04-24 17:41:28 +0900
committerYukihiro Matsumoto <[email protected]>2012-04-24 17:41:28 +0900
commit8b367098ac493cc458f731cc780070ffb103f2f4 (patch)
tree681fd1277aa80018f8dc6523af897fca236b5423 /src/irep.h
parent2970b6aadbb0d5afef683854e0fe36b05024fc36 (diff)
downloadmruby-8b367098ac493cc458f731cc780070ffb103f2f4.tar.gz
mruby-8b367098ac493cc458f731cc780070ffb103f2f4.zip
move header files {irep,dump,cdump,ritehash}.h to /include/mruby
Diffstat (limited to 'src/irep.h')
-rw-r--r--src/irep.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/irep.h b/src/irep.h
deleted file mode 100644
index b3f9e8d87..000000000
--- a/src/irep.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
-** irep.h - mrb_irep structure
-**
-** See Copyright Notice in mruby.h
-*/
-
-#ifndef MRUBY_IREP_H
-#define MRUBY_IREP_H
-
-typedef struct mrb_irep {
- int idx;
-
- int flags;
- int nlocals;
- int nregs;
-
- mrb_code *iseq;
- mrb_value *pool;
- mrb_sym *syms;
-
- 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);
-
-#endif /* MRUBY_IREP_H */