summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 08:11:27 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-02 08:11:27 +0000
commita9c0cf4ff06ecbda16b1fcf9d16cb252becd9453 (patch)
treec8b0717023f5ee5c2d08820edd5de0fdb7b0b97c /vm_core.h
parent417240b7fb987e364421d4c4bfd77dd5bfea10c4 (diff)
* iseq.h: introduce ISEQ_FLIP_CNT_INCREMENT() macro.
* compile.c (iseq_compile_each): use it. * vm_core.h: rename flip_cnt field to support this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 0d0f29196e..103b974afe 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -388,7 +388,7 @@ struct rb_iseq_constant_body {
struct rb_iseq_variable_body {
const VALUE coverage_; /* coverage array */
- rb_num_t flip_cnt;
+ rb_num_t flip_cnt_;
/* original iseq, before encoding
* used for debug/dump (TODO: union with compile_data) */