Skip to content

Commit

Permalink
merge revision(s) 40411:
Browse files Browse the repository at this point in the history
	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
  • Loading branch information
nagachika committed Apr 23, 2013
1 parent 7194acb commit 71fba68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion version.h
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions vm_exec.h
Expand Up @@ -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))
Expand All @@ -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()]); \
Expand Down
2 changes: 1 addition & 1 deletion vm_opts.h
Expand Up @@ -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
Expand Down

0 comments on commit 71fba68

Please sign in to comment.