summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--version.h2
-rw-r--r--vm_exec.h2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f0755df3f..ae1b43188c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/version.h b/version.h
index 493488b000..3e49529f44 100644
--- a/version.h
+++ b/version.h
@@ -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
diff --git a/vm_exec.h b/vm_exec.h
index caf752a76b..0a0455d292 100644
--- a/vm_exec.h
+++ b/vm_exec.h
@@ -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