aboutsummaryrefslogtreecommitdiffstats
path: root/vm.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-05 15:32:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-05 15:32:35 +0000
commit8a2621ddc2af26e5afb58ec17897fe818631f03c (patch)
tree8833a7eea6354c7a337f1ce03a59bcad8ab825ba /vm.c
parentb2b5a5db0925f94220897813a552aa7d4ec2fd11 (diff)
downloadruby-8a2621ddc2af26e5afb58ec17897fe818631f03c.tar.gz
eval_intern.h: use TH_TMPPOP_TAG and TH_REPUSH_TAG
* eval_intern.h (TH_TMPPOP_TAG, TH_REPUSH_TAG): instead of TAG2 names. * eval_intern.h (TH_REPUSH_TAG): suppress unused-value warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index 7d792b8f4c..36fd511bfa 100644
--- a/vm.c
+++ b/vm.c
@@ -1543,7 +1543,7 @@ vm_exec(rb_thread_t *th)
if (VM_FRAME_TYPE_FINISH_P(th->cfp)) {
vm_pop_frame(th);
th->errinfo = err;
- TH_POP_TAG2();
+ TH_TMPPOP_TAG();
JUMP_TAG(state);
}
else {