diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-27 03:30:18 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-27 03:30:18 +0000 |
commit | 206a9281301212d1daf02703cbf85dc1efc146e2 (patch) | |
tree | 9d8c424ea83224adfa02ce27ee17f170c83091e6 | |
parent | be6ff254038b7fd08b0e95fc44d803ed89a003ae (diff) |
* gc.h (SET_MACHINE_STACK_END): use __i386__ instead of __i386,
and explicit size qualifiers.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gc.h | 6 |
2 files changed, 9 insertions, 4 deletions
@@ -1,6 +1,11 @@ +Tue Oct 27 12:30:16 2009 Nobuyoshi Nakada <[email protected]> + + * gc.h (SET_MACHINE_STACK_END): use __i386__ instead of __i386, + and explicit size qualifiers. + Tue Oct 27 09:40:55 2009 NARUSE, Yui <[email protected]> - * gc.c (SET_MACHINE_STACK_END): add x86_64 version by nobu. + * gc.h (SET_MACHINE_STACK_END): add x86_64 version by nobu. Tue Oct 27 09:27:59 2009 NARUSE, Yui <[email protected]> @@ -3,9 +3,9 @@ #define RUBY_GC_H 1 #if defined(__x86_64__) && defined(__GNUC__) -#define SET_MACHINE_STACK_END(p) __asm__("mov %%rsp, %0" : "=r" (*p)) -#elif defined(__i386) && defined(__GNUC__) -#define SET_MACHINE_STACK_END(p) __asm__("mov %%esp, %0" : "=r" (*p)) +#define SET_MACHINE_STACK_END(p) __asm__("movq\t%%rsp, %0" : "=r" (*p)) +#elif defined(__i386__) && defined(__GNUC__) +#define SET_MACHINE_STACK_END(p) __asm__("movl\t%%esp, %0" : "=r" (*p)) #else NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p)); #define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p) |