Skip to content

Commit

Permalink
eval_intern.h: use TH_TMPPOP_TAG and TH_REPUSH_TAG
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
nobu committed Feb 5, 2014
1 parent b2b5a5d commit 8a2621d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions eval_intern.h
Expand Up @@ -120,14 +120,10 @@ extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval
_th->tag = _tag.prev; \
} while (0)

#define TH_POP_TAG2() \
#define TH_TMPPOP_TAG() \
_th->tag = _tag.prev

#define TH_PUSH_TAG2() (_th->tag = &_tag, 0)

#define TH_TMPPOP_TAG() TH_POP_TAG2()

#define TH_REPUSH_TAG() TH_PUSH_TAG2()
#define TH_REPUSH_TAG() (void)(_th->tag = &_tag)

#define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
#define POP_TAG() TH_POP_TAG()
Expand All @@ -153,7 +149,7 @@ rb_threadptr_tag_jump(rb_thread_t *th, int st)
[ISO/IEC 9899:1999] 7.13.1.1
*/
#define TH_EXEC_TAG() \
(ruby_setjmp(_tag.buf) ? rb_threadptr_tag_state(_th) : TH_PUSH_TAG2())
(ruby_setjmp(_tag.buf) ? rb_threadptr_tag_state(_th) : (TH_REPUSH_TAG(), 0))

#define EXEC_TAG() \
TH_EXEC_TAG()
Expand Down
2 changes: 1 addition & 1 deletion vm.c
Expand Up @@ -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 {
Expand Down

0 comments on commit 8a2621d

Please sign in to comment.