merge revision(s) 37661: [Backport #7633]

* vm_exec.h (GENTRY): GENTRY should be pointer size.
	  A patch by yoshidam (Yoshida Masato) [Bug #7332].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@38779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2013-01-11 08:04:20 +00:00
parent 398ed65c90
commit 21f84dd428
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Fri Jan 11 17:02:59 2013 Koichi Sasada <ko1@atdot.net>
* vm_exec.h (GENTRY): GENTRY should be pointer size.
A patch by yoshidam (Yoshida Masato) [Bug #7332].
Fri Jan 11 16:57:31 2013 NAKAMURA Usaku <usa@ruby-lang.org>
* vm_trace.c (rb_threadptr_exec_event_hooks): added a parameter to pop

View file

@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.3"
#define RUBY_PATCHLEVEL 364
#define RUBY_PATCHLEVEL 365
#define RUBY_RELEASE_DATE "2013-01-11"
#define RUBY_RELEASE_YEAR 2013

View file

@ -15,7 +15,7 @@
typedef long OFFSET;
typedef unsigned long lindex_t;
typedef unsigned long dindex_t;
typedef rb_num_t GENTRY;
typedef VALUE GENTRY;
typedef rb_iseq_t *ISEQ;
#ifdef COLLECT_USAGE_ANALYSIS