aboutsummaryrefslogtreecommitdiffstats
path: root/vm_trace.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-03 00:28:12 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-03 00:28:12 +0000
commit7cd730b33c917f27c68eb269c195de458cf420d8 (patch)
treea016e1c7a87c63f63b0cd5bacba5935f6956282f /vm_trace.c
parenta4999e84a2c638b3a885e32c61e47da2adee77c9 (diff)
downloadruby-7cd730b33c917f27c68eb269c195de458cf420d8.tar.gz
* vm_core.h: rename macros and make them inline functions.
* rename VM_FRAME_TYPE_FINISH_P() to VM_FRAME_FINISHED_P(). * rename VM_FRAME_TYPE_BMETHOD_P() to VM_FRAME_BMETHOD_P(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55803 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_trace.c')
-rw-r--r--vm_trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_trace.c b/vm_trace.c
index b85839af35..fe14c64918 100644
--- a/vm_trace.c
+++ b/vm_trace.c
@@ -359,7 +359,7 @@ rb_threadptr_exec_event_hooks_orig(rb_trace_arg_t *trace_arg, int pop_p)
if (state) {
if (pop_p) {
- if (VM_FRAME_TYPE_FINISH_P(th->cfp)) {
+ if (VM_FRAME_FINISHED_P(th->cfp)) {
th->tag = th->tag->prev;
}
rb_vm_pop_frame(th);