diff options
| author | Ryan Scott <[email protected]> | 2013-07-21 18:18:35 +1000 |
|---|---|---|
| committer | Ryan Scott <[email protected]> | 2013-07-21 18:18:35 +1000 |
| commit | fd9cc9938cb5998c2388431c396afe238462c9e2 (patch) | |
| tree | 0bf823a60f3922b3c92c94e2f79c0bbb31084e06 /include | |
| parent | 43c0f43f1355c1d421b36f5ede7bb5c3aa6b6dd8 (diff) | |
| parent | bc843ed9272d9733cafea7df130134264d15d6d9 (diff) | |
| download | mruby-fd9cc9938cb5998c2388431c396afe238462c9e2.tar.gz mruby-fd9cc9938cb5998c2388431c396afe238462c9e2.zip | |
Merge branch 'master' into attr-perf-fix
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/irep.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/mruby/irep.h b/include/mruby/irep.h index 856b12099..498b58ca3 100644 --- a/include/mruby/irep.h +++ b/include/mruby/irep.h @@ -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; |
