aboutsummaryrefslogtreecommitdiffstats
path: root/eval_intern.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-19 08:32:30 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-19 08:32:30 +0000
commit1ee96f770921c151cb8c3e3abe7c18b2c2866987 (patch)
treec0073149ee6e1a9e87dbd6a424b1c508b59257c2 /eval_intern.h
parent3f5792a1c64d9f972aaba5a5fc84670a36099eef (diff)
downloadruby-1ee96f770921c151cb8c3e3abe7c18b2c2866987.tar.gz
* eval_intern.h (TH_EXEC_TAG): need not to FLUSH_REGISTER_WINDOWS.
[ruby-core:15871], [ruby-dev:34088] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval_intern.h')
-rw-r--r--eval_intern.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/eval_intern.h b/eval_intern.h
index 0c50331b3e..52d2969844 100644
--- a/eval_intern.h
+++ b/eval_intern.h
@@ -142,8 +142,7 @@ char *strrchr(const char *, const char);
#define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
#define POP_TAG() TH_POP_TAG()
-#define TH_EXEC_TAG() \
- (FLUSH_REGISTER_WINDOWS, ruby_setjmp(_th->tag->buf))
+#define TH_EXEC_TAG() ruby_setjmp(_th->tag->buf)
#define EXEC_TAG() \
TH_EXEC_TAG()