summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authortakano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 10:45:05 +0000
committertakano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-10 10:45:05 +0000
commitbd0be3c4fda2320ad65475b793b9503a9cbb9d89 (patch)
tree3bbc8a7c6a040daf790a906286ab4437a6af6b86 /thread.c
parent1a920c7f9b05c57070add324899dae5b4562b963 (diff)
Thu Jan 10 19:39:05 2013 TAKANO `takano32' Mitsuhiro <tak@no32.tk>
* thread.c: fix RB_GC_SAVE_MACHINE_REGISTER_STACK define for ia64. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 37eb858d23..e2741fdd6f 100644
--- a/thread.c
+++ b/thread.c
@@ -106,7 +106,7 @@ static inline void blocking_region_end(rb_thread_t *th, struct rb_blocking_regio
#ifdef __ia64
#define RB_GC_SAVE_MACHINE_REGISTER_STACK(th) \
- do{(th)->machine_register_stack_end = rb_ia64_bsp()}while(0)
+ do{(th)->machine_register_stack_end = rb_ia64_bsp();}while(0)
#else
#define RB_GC_SAVE_MACHINE_REGISTER_STACK(th)
#endif