mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* insns.def (throw): insert a RUBY_VM_CHECK_INTS(). [ruby-dev:31361]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
571f22f5fe
commit
e7c3478261
3 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Aug 17 01:21:29 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* insns.def (throw): insert a RUBY_VM_CHECK_INTS(). [ruby-dev:31361]
|
||||
|
||||
Thu Aug 16 22:10:06 2007 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* compile.c (iseq_compile_each): fix next/redo stack consistency.
|
||||
|
|
|
@ -1213,6 +1213,7 @@ throw
|
|||
(VALUE throwobj)
|
||||
(VALUE val)
|
||||
{
|
||||
RUBY_VM_CHECK_INTS();
|
||||
val = vm_throw(th, GET_CFP(), throw_state, throwobj);
|
||||
THROW_EXCEPTION(val);
|
||||
/* unreachable */
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.9.0"
|
||||
#define RUBY_RELEASE_DATE "2007-08-16"
|
||||
#define RUBY_RELEASE_DATE "2007-08-17"
|
||||
#define RUBY_VERSION_CODE 190
|
||||
#define RUBY_RELEASE_CODE 20070816
|
||||
#define RUBY_RELEASE_CODE 20070817
|
||||
#define RUBY_PATCHLEVEL 0
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 0
|
||||
#define RUBY_RELEASE_YEAR 2007
|
||||
#define RUBY_RELEASE_MONTH 8
|
||||
#define RUBY_RELEASE_DAY 16
|
||||
#define RUBY_RELEASE_DAY 17
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue