summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-21 02:48:14 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-21 02:48:14 +0000
commit2a564dfb94eaa293461a0439cbe714f923a6993d (patch)
treefec64f47a363a0d12fa0cee694e5e99a28ca0ffe /vm.c
parent4cf437519f1cbefed5ad7ee2bf0e68857105823f (diff)
* vm.c, vm_dump.c: fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14378 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm.c b/vm.c
index 1ad9c7bfa3..e630331b7f 100644
--- a/vm.c
+++ b/vm.c
@@ -1777,10 +1777,10 @@ Init_VM(void)
rb_undef_alloc_func(rb_cThread);
rb_define_method(rb_cThread, "initialize", ruby_thread_init, 0);
- /* ::VM::USAGE_ANALISYS_* */
- rb_define_const(rb_cVM, "USAGE_ANALISYS_INSN", rb_hash_new());
- rb_define_const(rb_cVM, "USAGE_ANALISYS_REGS", rb_hash_new());
- rb_define_const(rb_cVM, "USAGE_ANALISYS_INSN_BIGRAM", rb_hash_new());
+ /* ::VM::USAGE_ANALYSIS_* */
+ rb_define_const(rb_cVM, "USAGE_ANALYSIS_INSN", rb_hash_new());
+ rb_define_const(rb_cVM, "USAGE_ANALYSIS_REGS", rb_hash_new());
+ rb_define_const(rb_cVM, "USAGE_ANALYSIS_INSN_BIGRAM", rb_hash_new());
rb_define_const(rb_cVM, "OPTS", opts = rb_ary_new());
#if OPT_DIRECT_THREADED_CODE