From a9c0cf4ff06ecbda16b1fcf9d16cb252becd9453 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 2 Dec 2015 08:11:27 +0000 Subject: * 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 --- iseq.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iseq.h') diff --git a/iseq.h b/iseq.h index 42ae4c8ce2..03cb8b3efb 100644 --- a/iseq.h +++ b/iseq.h @@ -26,7 +26,7 @@ rb_call_info_kw_arg_bytes(int keyword_len) #define ISEQ_COMPILE_DATA(iseq) (iseq)->compile_data_ #define ISEQ_COVERAGE(iseq) (iseq)->variable_body->coverage_ #define ISEQ_COVERAGE_SET(iseq, cov) RB_OBJ_WRITE((iseq), &(iseq)->variable_body->coverage_, cov) - +#define ISEQ_FLIP_CNT_INCREMENT(iseq) ((iseq)->variable_body->flip_cnt_++) RUBY_SYMBOL_EXPORT_BEGIN /* compile.c */ -- cgit v1.2.3