mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
merge revision(s) 38134,38136: [Backport #7468]
* gc.h (SET_MACHINE_STACK_END): add volatile for preventing harmful optimization. harmful optimization. [ruby-dev:46665] [Bug #7468] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@38501 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4e0632ad5d
commit
3f084cde2b
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Dec 20 18:35:36 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* gc.h (SET_MACHINE_STACK_END): add volatile for preventing
|
||||
harmful optimization. [ruby-dev:46665] [Bug #7468]
|
||||
|
||||
Thu Dec 20 18:34:38 2012 Hiroshi Shirosaki <h.shirosaki@gmail.com>
|
||||
|
||||
* compile.c (ADD_CATCH_ENTRY): add a cast to fix SEGV with x64 mingw
|
||||
|
|
4
gc.h
4
gc.h
|
@ -3,9 +3,9 @@
|
|||
#define RUBY_GC_H 1
|
||||
|
||||
#if defined(__x86_64__) && defined(__GNUC__)
|
||||
#define SET_MACHINE_STACK_END(p) __asm__("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__)
|
||||
#define SET_MACHINE_STACK_END(p) __asm__("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)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 347
|
||||
#define RUBY_PATCHLEVEL 348
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-12-20"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue