mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
be6ff25403
commit
206a928130
2 changed files with 9 additions and 4 deletions
6
gc.h
6
gc.h
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue