From 2a564dfb94eaa293461a0439cbe714f923a6993d Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 21 Dec 2007 02:48:14 +0000 Subject: * vm.c, vm_dump.c: fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14378 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_dump.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vm_dump.c') diff --git a/vm_dump.c b/vm_dump.c index be65f553ed..eb10261896 100644 --- a/vm_dump.c +++ b/vm_dump.c @@ -426,8 +426,8 @@ vm_analysis_insn(int insn) VALUE cv; if (usage_hash == 0) { - usage_hash = rb_intern("USAGE_ANALISYS_INSN"); - bigram_hash = rb_intern("USAGE_ANALISYS_INSN_BIGRAM"); + usage_hash = rb_intern("USAGE_ANALYSIS_INSN"); + bigram_hash = rb_intern("USAGE_ANALYSIS_INSN_BIGRAM"); } uh = rb_const_get(rb_cVM, usage_hash); if ((ihash = rb_hash_aref(uh, INT2FIX(insn))) == Qnil) { @@ -474,7 +474,7 @@ vm_analysis_operand(int insn, int n, VALUE op) VALUE cv; if (usage_hash == 0) { - usage_hash = rb_intern("USAGE_ANALISYS_INSN"); + usage_hash = rb_intern("USAGE_ANALYSIS_INSN"); } uh = rb_const_get(rb_cVM, usage_hash); @@ -524,7 +524,7 @@ vm_analysis_register(int reg, int isset) char buff[0x10]; int i; - usage_hash = rb_intern("USAGE_ANALISYS_REGS"); + usage_hash = rb_intern("USAGE_ANALYSIS_REGS"); for (i = 0; i < sizeof(regstrs) / sizeof(regstrs[0]); i++) { int j; -- cgit v1.2.3