diff options
author | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-10 05:41:01 +0000 |
---|---|---|
committer | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-10 05:41:01 +0000 |
commit | 08c11c23cb809b49d443486ea677f3cb7f1db857 (patch) | |
tree | 8c3648db7a7a2abe8151878fdeada582a1cb7a80 | |
parent | 2bfa96ec848f9c8e27006776be17e2f818e58761 (diff) |
* gc.h (SET_MACHINE_STACK_END): use __volatile__ instead of volatile.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39186 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gc.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Thu Feb 7 23:12:31 2013 KOSAKI Motohiro <[email protected]> + + * gc.h (SET_MACHINE_STACK_END): use __volatile__ instead of volatile. + Sun Feb 10 14:25:00 2013 Zachary Scott <[email protected]> * doc/rake/, lib/rake/doc/: Move Rake rdoc files to lib/rake @@ -3,9 +3,9 @@ #define RUBY_GC_H 1 #if defined(__x86_64__) && defined(__GNUC__) && !defined(__native_client__) -#define SET_MACHINE_STACK_END(p) __asm__ volatile ("movq\t%%rsp, %0" : "=r" (*(p))) +#define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("movq\t%%rsp, %0" : "=r" (*(p))) #elif defined(__i386) && defined(__GNUC__) && !defined(__native_client__) -#define SET_MACHINE_STACK_END(p) __asm__ volatile ("movl\t%%esp, %0" : "=r" (*(p))) +#define SET_MACHINE_STACK_END(p) __asm__ __volatile__ ("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) |