[前][次][番号順一覧][スレッド一覧]

ruby-changes:16765

From: nobu <ko1@a...>
Date: Tue, 27 Jul 2010 05:53:21 +0900 (JST)
Subject: [ruby-changes:16765] Ruby:r28761 (trunk): * compile.c (rb_iseq_translate_threaded_code): removed duplicated code.

nobu	2010-07-27 05:53:11 +0900 (Tue, 27 Jul 2010)

  New Revision: 28761

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28761

  Log:
    * compile.c (rb_iseq_translate_threaded_code): removed duplicated code.

  Modified files:
    trunk/compile.c
    trunk/version.h

Index: compile.c
===================================================================
--- compile.c	(revision 28760)
+++ compile.c	(revision 28761)
@@ -512,11 +512,7 @@
 {
 #if OPT_DIRECT_THREADED_CODE || OPT_CALL_THREADED_CODE
     extern const void **rb_vm_get_insns_address_table(void);
-#if OPT_DIRECT_THREADED_CODE
     const void * const *table = rb_vm_get_insns_address_table();
-#else
-    const void * const *table = rb_vm_get_insns_address_table();
-#endif
     unsigned long i;
 
     iseq->iseq_encoded = ALLOC_N(VALUE, iseq->iseq_size);
Index: version.h
===================================================================
--- version.h	(revision 28760)
+++ version.h	(revision 28761)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.3"
-#define RUBY_RELEASE_DATE "2010-07-26"
+#define RUBY_RELEASE_DATE "2010-07-27"
 #define RUBY_PATCHLEVEL -1
 #define RUBY_BRANCH_NAME "trunk"
 
@@ -8,7 +8,7 @@
 #define RUBY_VERSION_TEENY 1
 #define RUBY_RELEASE_YEAR 2010
 #define RUBY_RELEASE_MONTH 7
-#define RUBY_RELEASE_DAY 26
+#define RUBY_RELEASE_DAY 27
 
 #include "ruby/version.h"
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]