Commit bc843ed9 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1382 from suzukaze/add-comments

Add comments in irep.h
parents 88731e17 f05580f1
......@@ -11,10 +11,11 @@
extern "C" {
#endif
/* Program data array struct */
typedef struct mrb_irep {
uint32_t idx;
uint16_t nlocals;
uint16_t nregs;
uint16_t nlocals; /* Number of local variables */
uint16_t nregs; /* Number of register variables */
uint8_t flags;
mrb_code *iseq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment