merge revision(s) 40411:

fix minor code comment typos

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@40424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2013-04-23 13:25:06 +00:00
parent 7194acb65d
commit 71fba6871f
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2013-04-23"
#define RUBY_PATCHLEVEL 159
#define RUBY_PATCHLEVEL 160
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 4

View file

@ -83,7 +83,7 @@ error !
LABEL(insn): \
INSN_ENTRY_SIG(insn); \
/* dispather */
/* dispatcher */
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && __GNUC__ == 3
#define DISPATCH_ARCH_DEPEND_WAY(addr) \
asm volatile("jmp *%0;\t# -- inseted by vm.h\t[length = 2]" : : "r" (addr))
@ -105,7 +105,7 @@ error !
;
#else
/* token threade code */
/* token threaded code */
#define TC_DISPATCH(insn) \
DISPATCH_ARCH_DEPEND_WAY(insns_address_table[GET_CURRENT_INSN()]); \

View file

@ -29,7 +29,7 @@
* You can't change these options at runtime.
*/
/* C compiler depend */
/* C compiler dependent */
#define OPT_DIRECT_THREADED_CODE 1
#define OPT_TOKEN_THREADED_CODE 0
#define OPT_CALL_THREADED_CODE 0